diff --git a/schemas/constructs/v1beta1/academy/openapi.yml b/schemas/constructs/v1beta1/academy/openapi.yml index 2e158929f7..f77a2cba00 100644 --- a/schemas/constructs/v1beta1/academy/openapi.yml +++ b/schemas/constructs/v1beta1/academy/openapi.yml @@ -1380,6 +1380,8 @@ components: CurriculaRegistrationsResponse: type: object + description: "This report provides a detailed view of every content registration across your academy. Use it to track individual progress, analyze enrollment patterns, and manage your learner base. You can filter and customize the view using the icons on the top-right." + required: - data - total_count @@ -1397,4 +1399,81 @@ components: page_size: type: integer page: - type: integer \ No newline at end of file + type: integer + + AcademyAdminSummary: + type: object + description: "Core statistics data for displaying on the academy management dashboard." + properties: + total_learners: + type: integer + description: "This is the cumulative count of all unique learners who have ever enrolled in any of your academy content. A steady growth in this number indicates an expanding reach for your academy." + active_learners: + type: integer + description: "This metric counts all course registrations currently in the 'Registered' (in-progress) status. It's a key indicator of current student engagement and is used for billing purposes on Enterprise plans." + total_tests_taken: + type: integer + description: "This is the total number of all test attempts, including retakes by the same user. High numbers may suggest challenging content, while low numbers could indicate less engagement with assessments." + content_details: + type: object + description: "Overall statistics for academy content." + properties: + content_version: + type: string + description: "This version reflects your latest live academy content. Updates from your Git repository become visible here only after both a GitHub Release is created and the subsequent Layer5 Cloud deployment is complete." + learning_paths_count: + type: integer + description: "Total number of available learning paths." + certifications_count: + type: integer + description: "Total number of available certifications." + challenges_count: + type: integer + description: "Total number of available challenges." + learner_registration: + type: object + description: "This data shows the distribution of learners by their current status. A high ratio of non-completed statuses (i.e., Registered, Failed, and Withdrawn) relative to the 'Completed' status may indicate that your content is challenging or has engagement issues." + properties: + registered: + type: integer + description: "Learners who are 'in-progress' and have not yet finished the content." + completed: + type: integer + description: "Learners who have successfully finished the content." + withdrawn: + type: integer + description: "Learners who have unenrolled from the content." + failed: + type: integer + description: "Learners who have attempted to complete the content but did not meet the passing criteria." + content_metrics: + type: array + description: "A ranking of your curricula by the total number of registrations. Use this data to quickly identify your most engaging content." + items: + type: object + test_stats: + type: object + description: "Identity the most difficult, easiest, and most attempted tests in this high-level summary of test performance." + properties: + pass_fail_summary: + type: object + description: "This data shows a comparison of the total number of passed vs. failed attempts across all tests. This counts all attempts, including retakes by the same user." + properties: + passed_count: + type: integer + failed_count: + type: integer + most_difficult_test: + type: object + description: "This is the test with the lowest pass-to-fail ratio, helping you quickly identify the most challenging content for your learners." + easiest_test: + type: object + description: "This is the test with the highest pass-to-fail ratio, showing which content your learners are mastering most easily." + most_attempted_test: + type: object + description: "This is the test that learners have attempted the most times, regardless of the outcome. High attempts could indicate either popularity or significant difficulty." + test_metrics: + type: array + description: "This list provides a detailed performance breakdown for each individual test. Each test title is a clickable link that navigates directly to that assessment." + items: + type: object