rustici_software_cloud_v2 1.0.0beta
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +7 -0
- data/LICENSE +201 -0
- data/README.md +283 -0
- data/Rakefile +8 -0
- data/docs/ActivityResultSchema.md +20 -0
- data/docs/ApplicationListSchema.md +8 -0
- data/docs/ApplicationManagementApi.md +570 -0
- data/docs/ApplicationSchema.md +9 -0
- data/docs/ApplicationToken.md +10 -0
- data/docs/AuthenticationApi.md +64 -0
- data/docs/CommentSchema.md +10 -0
- data/docs/CompletionAmountSchema.md +8 -0
- data/docs/CourseActivitySchema.md +15 -0
- data/docs/CourseApi.md +1459 -0
- data/docs/CourseListNonPagedSchema.md +8 -0
- data/docs/CourseListSchema.md +9 -0
- data/docs/CourseReferenceSchema.md +10 -0
- data/docs/CourseSchema.md +20 -0
- data/docs/CourseTagsBatchSchema.md +9 -0
- data/docs/CreateRegistrationSchema.md +17 -0
- data/docs/CredentialCreatedSchema.md +12 -0
- data/docs/CredentialListSchema.md +8 -0
- data/docs/CredentialRequestSchema.md +9 -0
- data/docs/CredentialSchema.md +12 -0
- data/docs/ImportFetchRequestSchema.md +8 -0
- data/docs/ImportJobResultSchema.md +11 -0
- data/docs/ImportResultSchema.md +11 -0
- data/docs/IntegerResultSchema.md +8 -0
- data/docs/ItemValuePairSchema.md +9 -0
- data/docs/LaunchHistoryListSchema.md +8 -0
- data/docs/LaunchHistorySchema.md +17 -0
- data/docs/LaunchLinkRequestSchema.md +17 -0
- data/docs/LaunchLinkSchema.md +8 -0
- data/docs/LearnerPreferenceSchema.md +11 -0
- data/docs/LearnerSchema.md +11 -0
- data/docs/LinkSchema.md +8 -0
- data/docs/MessageSchema.md +8 -0
- data/docs/MetadataSchema.md +14 -0
- data/docs/ObjectiveSchema.md +20 -0
- data/docs/PermissionsSchema.md +9 -0
- data/docs/PingApi.md +57 -0
- data/docs/PingSchema.md +8 -0
- data/docs/PostBackSchema.md +12 -0
- data/docs/RegistrationApi.md +1490 -0
- data/docs/RegistrationCompletion.md +7 -0
- data/docs/RegistrationListSchema.md +9 -0
- data/docs/RegistrationSchema.md +27 -0
- data/docs/RegistrationSuccess.md +7 -0
- data/docs/RegistrationTagsBatchSchema.md +9 -0
- data/docs/ResponseError.md +8 -0
- data/docs/RuntimeInteractionSchema.md +18 -0
- data/docs/RuntimeObjectiveSchema.md +16 -0
- data/docs/RuntimeSchema.md +27 -0
- data/docs/ScoreSchema.md +8 -0
- data/docs/SettingItem.md +12 -0
- data/docs/SettingListSchema.md +8 -0
- data/docs/SettingMetadata.md +15 -0
- data/docs/SettingMetadataValidValues.md +9 -0
- data/docs/SettingValidValue.md +9 -0
- data/docs/SettingsIndividualSchema.md +10 -0
- data/docs/SettingsPostSchema.md +8 -0
- data/docs/SharedDataEntrySchema.md +9 -0
- data/docs/StaticPropertiesSchema.md +13 -0
- data/docs/StringResultSchema.md +8 -0
- data/docs/TagListSchema.md +8 -0
- data/docs/TagPostSchema.md +7 -0
- data/docs/TitleSchema.md +8 -0
- data/docs/TokenRequestSchema.md +9 -0
- data/docs/XapiAccount.md +9 -0
- data/docs/XapiActivity.md +10 -0
- data/docs/XapiActivityDefinition.md +19 -0
- data/docs/XapiAgentGroup.md +14 -0
- data/docs/XapiAttachment.md +14 -0
- data/docs/XapiContext.md +16 -0
- data/docs/XapiContextActivity.md +11 -0
- data/docs/XapiInteractionComponent.md +9 -0
- data/docs/XapiResult.md +13 -0
- data/docs/XapiScore.md +11 -0
- data/docs/XapiStatement.md +20 -0
- data/docs/XapiStatementReference.md +9 -0
- data/docs/XapiStatementResult.md +9 -0
- data/docs/XapiVerb.md +9 -0
- data/git_push.sh +55 -0
- data/lib/rustici_software_cloud_v2.rb +116 -0
- data/lib/rustici_software_cloud_v2/api/application_management_api.rb +574 -0
- data/lib/rustici_software_cloud_v2/api/authentication_api.rb +87 -0
- data/lib/rustici_software_cloud_v2/api/course_api.rb +1469 -0
- data/lib/rustici_software_cloud_v2/api/ping_api.rb +69 -0
- data/lib/rustici_software_cloud_v2/api/registration_api.rb +1499 -0
- data/lib/rustici_software_cloud_v2/api_client.rb +389 -0
- data/lib/rustici_software_cloud_v2/api_error.rb +38 -0
- data/lib/rustici_software_cloud_v2/configuration.rb +237 -0
- data/lib/rustici_software_cloud_v2/models/activity_result_schema.rb +341 -0
- data/lib/rustici_software_cloud_v2/models/application_list_schema.rb +185 -0
- data/lib/rustici_software_cloud_v2/models/application_schema.rb +194 -0
- data/lib/rustici_software_cloud_v2/models/application_token.rb +201 -0
- data/lib/rustici_software_cloud_v2/models/comment_schema.rb +201 -0
- data/lib/rustici_software_cloud_v2/models/completion_amount_schema.rb +184 -0
- data/lib/rustici_software_cloud_v2/models/course_activity_schema.rb +289 -0
- data/lib/rustici_software_cloud_v2/models/course_list_non_paged_schema.rb +185 -0
- data/lib/rustici_software_cloud_v2/models/course_list_schema.rb +194 -0
- data/lib/rustici_software_cloud_v2/models/course_reference_schema.rb +202 -0
- data/lib/rustici_software_cloud_v2/models/course_schema.rb +328 -0
- data/lib/rustici_software_cloud_v2/models/course_tags_batch_schema.rb +204 -0
- data/lib/rustici_software_cloud_v2/models/create_registration_schema.rb +287 -0
- data/lib/rustici_software_cloud_v2/models/credential_created_schema.rb +223 -0
- data/lib/rustici_software_cloud_v2/models/credential_list_schema.rb +185 -0
- data/lib/rustici_software_cloud_v2/models/credential_request_schema.rb +194 -0
- data/lib/rustici_software_cloud_v2/models/credential_schema.rb +223 -0
- data/lib/rustici_software_cloud_v2/models/import_fetch_request_schema.rb +190 -0
- data/lib/rustici_software_cloud_v2/models/import_job_result_schema.rb +244 -0
- data/lib/rustici_software_cloud_v2/models/import_result_schema.rb +215 -0
- data/lib/rustici_software_cloud_v2/models/integer_result_schema.rb +188 -0
- data/lib/rustici_software_cloud_v2/models/item_value_pair_schema.rb +192 -0
- data/lib/rustici_software_cloud_v2/models/launch_history_list_schema.rb +185 -0
- data/lib/rustici_software_cloud_v2/models/launch_history_schema.rb +317 -0
- data/lib/rustici_software_cloud_v2/models/launch_link_request_schema.rb +282 -0
- data/lib/rustici_software_cloud_v2/models/launch_link_schema.rb +188 -0
- data/lib/rustici_software_cloud_v2/models/learner_preference_schema.rb +210 -0
- data/lib/rustici_software_cloud_v2/models/learner_schema.rb +216 -0
- data/lib/rustici_software_cloud_v2/models/link_schema.rb +188 -0
- data/lib/rustici_software_cloud_v2/models/message_schema.rb +188 -0
- data/lib/rustici_software_cloud_v2/models/metadata_schema.rb +239 -0
- data/lib/rustici_software_cloud_v2/models/objective_schema.rb +355 -0
- data/lib/rustici_software_cloud_v2/models/permissions_schema.rb +195 -0
- data/lib/rustici_software_cloud_v2/models/ping_schema.rb +188 -0
- data/lib/rustici_software_cloud_v2/models/post_back_schema.rb +273 -0
- data/lib/rustici_software_cloud_v2/models/registration_completion.rb +31 -0
- data/lib/rustici_software_cloud_v2/models/registration_list_schema.rb +199 -0
- data/lib/rustici_software_cloud_v2/models/registration_schema.rb +360 -0
- data/lib/rustici_software_cloud_v2/models/registration_success.rb +31 -0
- data/lib/rustici_software_cloud_v2/models/registration_tags_batch_schema.rb +204 -0
- data/lib/rustici_software_cloud_v2/models/response_error.rb +188 -0
- data/lib/rustici_software_cloud_v2/models/runtime_interaction_schema.rb +311 -0
- data/lib/rustici_software_cloud_v2/models/runtime_objective_schema.rb +305 -0
- data/lib/rustici_software_cloud_v2/models/runtime_schema.rb +398 -0
- data/lib/rustici_software_cloud_v2/models/score_schema.rb +184 -0
- data/lib/rustici_software_cloud_v2/models/setting_item.rb +256 -0
- data/lib/rustici_software_cloud_v2/models/setting_list_schema.rb +190 -0
- data/lib/rustici_software_cloud_v2/models/setting_metadata.rb +294 -0
- data/lib/rustici_software_cloud_v2/models/setting_metadata_valid_values.rb +209 -0
- data/lib/rustici_software_cloud_v2/models/setting_valid_value.rb +193 -0
- data/lib/rustici_software_cloud_v2/models/settings_individual_schema.rb +203 -0
- data/lib/rustici_software_cloud_v2/models/settings_post_schema.rb +185 -0
- data/lib/rustici_software_cloud_v2/models/shared_data_entry_schema.rb +192 -0
- data/lib/rustici_software_cloud_v2/models/static_properties_schema.rb +228 -0
- data/lib/rustici_software_cloud_v2/models/string_result_schema.rb +188 -0
- data/lib/rustici_software_cloud_v2/models/tag_list_schema.rb +185 -0
- data/lib/rustici_software_cloud_v2/models/tag_post_schema.rb +174 -0
- data/lib/rustici_software_cloud_v2/models/title_schema.rb +183 -0
- data/lib/rustici_software_cloud_v2/models/token_request_schema.rb +203 -0
- data/lib/rustici_software_cloud_v2/models/xapi_account.rb +203 -0
- data/lib/rustici_software_cloud_v2/models/xapi_activity.rb +209 -0
- data/lib/rustici_software_cloud_v2/models/xapi_activity_definition.rb +301 -0
- data/lib/rustici_software_cloud_v2/models/xapi_agent_group.rb +279 -0
- data/lib/rustici_software_cloud_v2/models/xapi_attachment.rb +267 -0
- data/lib/rustici_software_cloud_v2/models/xapi_context.rb +258 -0
- data/lib/rustici_software_cloud_v2/models/xapi_context_activity.rb +219 -0
- data/lib/rustici_software_cloud_v2/models/xapi_interaction_component.rb +200 -0
- data/lib/rustici_software_cloud_v2/models/xapi_result.rb +231 -0
- data/lib/rustici_software_cloud_v2/models/xapi_score.rb +211 -0
- data/lib/rustici_software_cloud_v2/models/xapi_statement.rb +294 -0
- data/lib/rustici_software_cloud_v2/models/xapi_statement_reference.rb +205 -0
- data/lib/rustici_software_cloud_v2/models/xapi_statement_result.rb +200 -0
- data/lib/rustici_software_cloud_v2/models/xapi_verb.rb +200 -0
- data/lib/rustici_software_cloud_v2/version.rb +15 -0
- data/rustici_software_cloud_v2.gemspec +45 -0
- data/spec/api_client_spec.rb +237 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/activity_result_schema_spec.rb +133 -0
- data/spec/models/application_list_schema_spec.rb +53 -0
- data/spec/models/application_schema_spec.rb +59 -0
- data/spec/models/application_token_spec.rb +65 -0
- data/spec/models/comment_schema_spec.rb +65 -0
- data/spec/models/completion_amount_schema_spec.rb +53 -0
- data/spec/models/course_activity_schema_spec.rb +99 -0
- data/spec/models/course_list_non_paged_schema_spec.rb +53 -0
- data/spec/models/course_list_schema_spec.rb +59 -0
- data/spec/models/course_reference_schema_spec.rb +65 -0
- data/spec/models/course_schema_spec.rb +129 -0
- data/spec/models/create_registration_schema_spec.rb +107 -0
- data/spec/models/credential_created_schema_spec.rb +77 -0
- data/spec/models/credential_list_schema_spec.rb +53 -0
- data/spec/models/credential_request_schema_spec.rb +59 -0
- data/spec/models/credential_schema_spec.rb +77 -0
- data/spec/models/import_fetch_request_schema_spec.rb +53 -0
- data/spec/models/import_job_result_schema_spec.rb +75 -0
- data/spec/models/import_result_schema_spec.rb +71 -0
- data/spec/models/integer_result_schema_spec.rb +53 -0
- data/spec/models/item_value_pair_schema_spec.rb +59 -0
- data/spec/models/launch_history_list_schema_spec.rb +53 -0
- data/spec/models/launch_history_schema_spec.rb +115 -0
- data/spec/models/launch_link_request_schema_spec.rb +107 -0
- data/spec/models/launch_link_schema_spec.rb +53 -0
- data/spec/models/learner_preference_schema_spec.rb +71 -0
- data/spec/models/learner_schema_spec.rb +71 -0
- data/spec/models/link_schema_spec.rb +53 -0
- data/spec/models/message_schema_spec.rb +53 -0
- data/spec/models/metadata_schema_spec.rb +89 -0
- data/spec/models/objective_schema_spec.rb +137 -0
- data/spec/models/permissions_schema_spec.rb +59 -0
- data/spec/models/ping_schema_spec.rb +53 -0
- data/spec/models/post_back_schema_spec.rb +85 -0
- data/spec/models/registration_completion_spec.rb +47 -0
- data/spec/models/registration_list_schema_spec.rb +59 -0
- data/spec/models/registration_schema_spec.rb +167 -0
- data/spec/models/registration_success_spec.rb +47 -0
- data/spec/models/response_error_spec.rb +53 -0
- data/spec/models/runtime_interaction_schema_spec.rb +117 -0
- data/spec/models/runtime_objective_schema_spec.rb +109 -0
- data/spec/models/runtime_schema_spec.rb +171 -0
- data/spec/models/score_schema_spec.rb +53 -0
- data/spec/models/setting_item_spec.rb +81 -0
- data/spec/models/setting_list_schema_spec.rb +53 -0
- data/spec/models/setting_metadata_spec.rb +99 -0
- data/spec/models/setting_metadata_valid_values_spec.rb +59 -0
- data/spec/models/settings_individual_schema_spec.rb +65 -0
- data/spec/models/settings_post_schema_spec.rb +53 -0
- data/spec/models/shared_data_entry_schema_spec.rb +59 -0
- data/spec/models/static_properties_schema_spec.rb +83 -0
- data/spec/models/string_result_schema_spec.rb +53 -0
- data/spec/models/title_schema_spec.rb +53 -0
- data/spec/models/token_request_schema_spec.rb +59 -0
- data/spec/spec_helper.rb +122 -0
- data/swagger-codegen.config +11 -0
- metadata +526 -0
@@ -0,0 +1,9 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::RegistrationListSchema
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**registrations** | [**Array<RegistrationSchema>**](RegistrationSchema.md) | |
|
7
|
+
**more** | **String** | | [optional]
|
8
|
+
|
9
|
+
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::RegistrationSchema
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**id** | **String** | | [optional]
|
7
|
+
**instance** | **Integer** | | [optional]
|
8
|
+
**xapi_registration_id** | **String** | xAPI registration id associated with this registration | [optional]
|
9
|
+
**dispatch_id** | **String** | Dispatch ID for this registration, if applicable | [optional]
|
10
|
+
**updated** | **DateTime** | | [optional]
|
11
|
+
**registration_completion** | [**RegistrationCompletion**](RegistrationCompletion.md) | | [optional]
|
12
|
+
**registration_completion_amount** | **Float** | | [optional]
|
13
|
+
**registration_success** | [**RegistrationSuccess**](RegistrationSuccess.md) | | [optional]
|
14
|
+
**score** | [**ScoreSchema**](ScoreSchema.md) | | [optional]
|
15
|
+
**total_seconds_tracked** | **Float** | | [optional]
|
16
|
+
**first_access_date** | **DateTime** | | [optional]
|
17
|
+
**last_access_date** | **DateTime** | | [optional]
|
18
|
+
**completed_date** | **DateTime** | | [optional]
|
19
|
+
**created_date** | **DateTime** | | [optional]
|
20
|
+
**course** | [**CourseReferenceSchema**](CourseReferenceSchema.md) | | [optional]
|
21
|
+
**learner** | [**LearnerSchema**](LearnerSchema.md) | | [optional]
|
22
|
+
**global_objectives** | [**Array<ObjectiveSchema>**](ObjectiveSchema.md) | | [optional]
|
23
|
+
**shared_data** | [**Array<SharedDataEntrySchema>**](SharedDataEntrySchema.md) | | [optional]
|
24
|
+
**suspended_activity_id** | **String** | | [optional]
|
25
|
+
**activity_details** | [**ActivityResultSchema**](ActivityResultSchema.md) | | [optional]
|
26
|
+
|
27
|
+
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::RegistrationTagsBatchSchema
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**registration_ids** | **Array<String>** | |
|
7
|
+
**tags** | [**TagPostSchema**](TagPostSchema.md) | |
|
8
|
+
|
9
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::RuntimeInteractionSchema
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**id** | **String** | | [optional]
|
7
|
+
**type** | **String** | | [optional]
|
8
|
+
**objectives** | **Array<String>** | | [optional]
|
9
|
+
**timestamp** | **String** | | [optional]
|
10
|
+
**timestamp_utc** | **String** | | [optional]
|
11
|
+
**correct_responses** | **Array<String>** | | [optional]
|
12
|
+
**weighting** | **String** | | [optional]
|
13
|
+
**learner_response** | **String** | | [optional]
|
14
|
+
**result** | **String** | | [optional]
|
15
|
+
**latency** | **String** | | [optional]
|
16
|
+
**description** | **String** | | [optional]
|
17
|
+
|
18
|
+
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::RuntimeObjectiveSchema
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**id** | **String** | | [optional]
|
7
|
+
**score_scaled** | **String** | | [optional]
|
8
|
+
**score_min** | **String** | | [optional]
|
9
|
+
**score_max** | **String** | | [optional]
|
10
|
+
**score_raw** | **String** | | [optional]
|
11
|
+
**runtime_objective_success_status** | **String** | | [optional] [default to 'UNKNOWN']
|
12
|
+
**runtime_objective_completion_status** | **String** | | [optional] [default to 'UNKNOWN']
|
13
|
+
**progress_measure** | **String** | | [optional]
|
14
|
+
**description** | **String** | | [optional]
|
15
|
+
|
16
|
+
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::RuntimeSchema
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**completion_status** | **String** | | [optional]
|
7
|
+
**credit** | **String** | | [optional]
|
8
|
+
**entry** | **String** | | [optional]
|
9
|
+
**exit** | **String** | | [optional]
|
10
|
+
**learner_preference** | [**LearnerPreferenceSchema**](LearnerPreferenceSchema.md) | | [optional]
|
11
|
+
**location** | **String** | | [optional]
|
12
|
+
**mode** | **String** | | [optional]
|
13
|
+
**progress_measure** | **String** | | [optional]
|
14
|
+
**score_scaled** | **String** | | [optional]
|
15
|
+
**score_raw** | **String** | | [optional]
|
16
|
+
**score_min** | **String** | | [optional]
|
17
|
+
**score_max** | **String** | | [optional]
|
18
|
+
**total_time** | **String** | | [optional]
|
19
|
+
**time_tracked** | **String** | | [optional]
|
20
|
+
**runtime_success_status** | **String** | | [optional] [default to 'UNKNOWN']
|
21
|
+
**suspend_data** | **String** | | [optional]
|
22
|
+
**learner_comments** | [**Array<CommentSchema>**](CommentSchema.md) | | [optional]
|
23
|
+
**lms_comments** | [**Array<CommentSchema>**](CommentSchema.md) | | [optional]
|
24
|
+
**runtime_interactions** | [**Array<RuntimeInteractionSchema>**](RuntimeInteractionSchema.md) | | [optional]
|
25
|
+
**runtime_objectives** | [**Array<RuntimeObjectiveSchema>**](RuntimeObjectiveSchema.md) | | [optional]
|
26
|
+
|
27
|
+
|
data/docs/ScoreSchema.md
ADDED
data/docs/SettingItem.md
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::SettingItem
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**id** | **String** | | [optional]
|
7
|
+
**effective_value** | **String** | The value of this setting that would be used if read at this level, including defaults, fallback, and values set at less specific levels. | [optional]
|
8
|
+
**effective_value_source** | **String** | The source of this effective value, default, fallback, or the level the value was set at. | [optional]
|
9
|
+
**explicit_value** | **String** | The value of this setting that is explicitly set at this level. If not present, the setting is not specified at this level. | [optional]
|
10
|
+
**metadata** | [**SettingMetadata**](SettingMetadata.md) | | [optional]
|
11
|
+
|
12
|
+
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::SettingMetadata
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**default** | **String** | Default value of this setting | [optional]
|
7
|
+
**data_type** | **String** | The data type of this setting | [optional]
|
8
|
+
**setting_description** | **String** | description of this setting | [optional]
|
9
|
+
**level** | **String** | The level this setting will be applied at, which limits where it can be set. For example, WebPathToContentRoot is applied at the application level, so it's not valid to set it for a registration. | [optional]
|
10
|
+
**learning_standards** | **Array<String>** | The list of learning standards this setting applies to. If not present, this setting is not limited to certain learning standards. | [optional]
|
11
|
+
**learning_standard_variant** | **String** | Does this setting apply to only single-SCO packages, only multi-SCO, or either? | [optional] [default to 'either']
|
12
|
+
**fallback** | **String** | A setting that will be used instead of this setting if no value is provided for this setting (This is similar to a default, except that the the value of another setting is being used instead of a fixed default value). | [optional]
|
13
|
+
**valid_values** | [**Array<SettingValidValue>**](SettingValidValue.md) | For settings with a fixed list of valid values, the list of those values | [optional]
|
14
|
+
|
15
|
+
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::SettingMetadataValidValues
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**value** | **String** | | [optional]
|
7
|
+
**value_description** | **String** | Description of what this valid value means, how it will be applied if used in a setting | [optional]
|
8
|
+
|
9
|
+
|
@@ -0,0 +1,9 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::SettingValidValue
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**value** | **String** | | [optional]
|
7
|
+
**value_description** | **String** | Description of what this valid value means, how it will be applied if used in a setting | [optional]
|
8
|
+
|
9
|
+
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::SettingsIndividualSchema
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**setting_id** | **String** | | [optional]
|
7
|
+
**value** | **String** | | [optional]
|
8
|
+
**explicit** | **BOOLEAN** | | [optional] [default to false]
|
9
|
+
|
10
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::SettingsPostSchema
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**settings** | [**Array<SettingsIndividualSchema>**](SettingsIndividualSchema.md) | | [optional]
|
7
|
+
|
8
|
+
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::StaticPropertiesSchema
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**completion_threshold** | **String** | | [optional]
|
7
|
+
**launch_data** | **String** | | [optional]
|
8
|
+
**max_time_allowed** | **String** | | [optional]
|
9
|
+
**scaled_passing_score** | **Float** | | [optional]
|
10
|
+
**scaled_passing_score_used** | **BOOLEAN** | | [optional]
|
11
|
+
**time_limit_action** | **String** | | [optional]
|
12
|
+
|
13
|
+
|
data/docs/TitleSchema.md
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::TokenRequestSchema
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**permissions** | [**PermissionsSchema**](PermissionsSchema.md) | |
|
7
|
+
**expiry** | **DateTime** | Expiration of the token. This should not be set far in the future, as there is no way to invalidate an individual token. |
|
8
|
+
|
9
|
+
|
data/docs/XapiAccount.md
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::XapiActivity
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**object_type** | **String** | | [optional] [default to 'Activity']
|
7
|
+
**id** | **String** | |
|
8
|
+
**definition** | [**XapiActivityDefinition**](XapiActivityDefinition.md) | | [optional]
|
9
|
+
|
10
|
+
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::XapiActivityDefinition
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**name** | **Hash<String, String>** | | [optional]
|
7
|
+
**description** | **Hash<String, String>** | | [optional]
|
8
|
+
**type** | **String** | | [optional]
|
9
|
+
**more_info** | **String** | | [optional]
|
10
|
+
**interaction_type** | **String** | | [optional]
|
11
|
+
**correct_responses_pattern** | **Array<String>** | | [optional]
|
12
|
+
**choices** | [**Array<XapiInteractionComponent>**](XapiInteractionComponent.md) | | [optional]
|
13
|
+
**scale** | [**Array<XapiInteractionComponent>**](XapiInteractionComponent.md) | | [optional]
|
14
|
+
**source** | [**Array<XapiInteractionComponent>**](XapiInteractionComponent.md) | | [optional]
|
15
|
+
**target** | [**Array<XapiInteractionComponent>**](XapiInteractionComponent.md) | | [optional]
|
16
|
+
**steps** | [**Array<XapiInteractionComponent>**](XapiInteractionComponent.md) | | [optional]
|
17
|
+
**extensions** | **Hash<String, Object>** | | [optional]
|
18
|
+
|
19
|
+
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::XapiAgentGroup
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**object_type** | **String** | |
|
7
|
+
**name** | **String** | | [optional]
|
8
|
+
**mbox** | **String** | | [optional]
|
9
|
+
**mbox_sha1sum** | **String** | | [optional]
|
10
|
+
**openid** | **String** | | [optional]
|
11
|
+
**account** | [**XapiAccount**](XapiAccount.md) | | [optional]
|
12
|
+
**member** | [**Array<XapiAgentGroup>**](XapiAgentGroup.md) | | [optional]
|
13
|
+
|
14
|
+
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::XapiAttachment
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**usage_type** | **String** | |
|
7
|
+
**display** | **Hash<String, String>** | |
|
8
|
+
**description** | **Hash<String, String>** | | [optional]
|
9
|
+
**content_type** | **String** | |
|
10
|
+
**length** | **Integer** | |
|
11
|
+
**sha2** | **String** | |
|
12
|
+
**file_url** | **String** | | [optional]
|
13
|
+
|
14
|
+
|
data/docs/XapiContext.md
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::XapiContext
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**registration** | **String** | | [optional]
|
7
|
+
**instructor** | [**XapiAgentGroup**](XapiAgentGroup.md) | | [optional]
|
8
|
+
**team** | [**XapiAgentGroup**](XapiAgentGroup.md) | | [optional]
|
9
|
+
**context_activities** | [**XapiContextActivity**](XapiContextActivity.md) | | [optional]
|
10
|
+
**revision** | **String** | | [optional]
|
11
|
+
**platform** | **String** | | [optional]
|
12
|
+
**language** | **String** | | [optional]
|
13
|
+
**statement** | [**XapiStatementReference**](XapiStatementReference.md) | | [optional]
|
14
|
+
**extensions** | **Hash<String, Object>** | | [optional]
|
15
|
+
|
16
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::XapiContextActivity
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**parent** | [**Array<XapiActivity>**](XapiActivity.md) | | [optional]
|
7
|
+
**grouping** | [**Array<XapiActivity>**](XapiActivity.md) | | [optional]
|
8
|
+
**category** | [**Array<XapiActivity>**](XapiActivity.md) | | [optional]
|
9
|
+
**other** | [**Array<XapiActivity>**](XapiActivity.md) | | [optional]
|
10
|
+
|
11
|
+
|
data/docs/XapiResult.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# RusticiSoftwareCloudV2::XapiResult
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
Name | Type | Description | Notes
|
5
|
+
------------ | ------------- | ------------- | -------------
|
6
|
+
**score** | [**XapiScore**](XapiScore.md) | | [optional]
|
7
|
+
**success** | **BOOLEAN** | | [optional]
|
8
|
+
**completion** | **BOOLEAN** | | [optional]
|
9
|
+
**response** | **String** | | [optional]
|
10
|
+
**duration** | **String** | | [optional]
|
11
|
+
**extensions** | **Hash<String, Object>** | | [optional]
|
12
|
+
|
13
|
+
|