@@ -3959,24 +3959,27 @@ paths:
3959
3959
description : " Retrieves the language `module` object that represents a
3960
3960
currently loaded language module."
3961
3961
3962
- tags :
3963
- - status
3962
+ tags :
3963
+ - status
3964
3964
3965
- responses :
3966
- " 200 " :
3967
- description : " OK; the language `module` object exists."
3965
+ parameters :
3966
+ - $ref : " #/components/parameters/langMod"
3968
3967
3969
- content :
3970
- application/json :
3971
- schema :
3972
- $ref : " #/components/schemas/StatusModulesLang"
3968
+ responses :
3969
+ " 200 " :
3970
+ description : " OK; the language `module` object exists."
3973
3971
3974
- examples :
3975
- example1 :
3976
- $ref : " #/components/examples/statusModulesLang
3972
+ content :
3973
+ application/json :
3974
+ schema :
3975
+ $ref : " #/components/schemas/statusModulesLang"
3977
3976
3978
- " 404":
3979
- $ref : " #/components/responses/responseNotFound"
3977
+ examples :
3978
+ example1 :
3979
+ $ref : " #/components/examples/statusModulesLang"
3980
+
3981
+ " 404 " :
3982
+ $ref : " #/components/responses/responseNotFound"
3980
3983
3981
3984
/status/modules/{langMod}/version :
3982
3985
summary : " Endpoint for the loaded language module `version` object"
@@ -3986,24 +3989,27 @@ paths:
3986
3989
description : " Retrieves the language module `version` object that
3987
3990
represents the version of a currently loaded language module."
3988
3991
3989
- tags :
3990
- - status
3992
+ tags :
3993
+ - status
3991
3994
3992
- responses :
3993
- " 200 " :
3994
- description : " OK; the language module `version` object exists."
3995
+ parameters :
3996
+ - $ref : " #/components/parameters/langMod"
3995
3997
3996
- content :
3997
- application/json :
3998
- schema :
3999
- $ref : " #/components/schemas/StatusModulesLangVersion"
3998
+ responses :
3999
+ " 200 " :
4000
+ description : " OK; the language module `version` object exists."
4000
4001
4001
- examples :
4002
- example1 :
4003
- $ref : " #/components/examples/statusModulesLangVersion
4002
+ content :
4003
+ application/json :
4004
+ schema :
4005
+ $ref : " #/components/schemas/statusModulesLangVersion"
4004
4006
4005
- " 404":
4006
- $ref : " #/components/responses/responseNotFound"
4007
+ examples :
4008
+ example1 :
4009
+ $ref : " #/components/examples/statusModulesLangVersion"
4010
+
4011
+ " 404 " :
4012
+ $ref : " #/components/responses/responseNotFound"
4007
4013
4008
4014
/status/modules/{langMod}/lib :
4009
4015
summary : " Endpoint for the loaded language module `lib` object"
@@ -4013,24 +4019,27 @@ paths:
4013
4019
description : " Retrieves the language module `lib` object that represents
4014
4020
the file path to the loaded language module."
4015
4021
4016
- tags :
4017
- - status
4022
+ tags :
4023
+ - status
4018
4024
4019
- responses :
4020
- " 200 " :
4021
- description : " OK; the language module `lib` object exists."
4025
+ parameters :
4026
+ - $ref : " #/components/parameters/langMod"
4022
4027
4023
- content :
4024
- application/json :
4025
- schema :
4026
- $ref : " #/components/schemas/StatusModulesLangLib"
4028
+ responses :
4029
+ " 200 " :
4030
+ description : " OK; the language module `lib` object exists."
4027
4031
4028
- examples :
4029
- example1 :
4030
- $ref : " #/components/examples/statusModulesLangLib
4032
+ content :
4033
+ application/json :
4034
+ schema :
4035
+ $ref : " #/components/schemas/statusModulesLangLib"
4036
+
4037
+ examples :
4038
+ example1 :
4039
+ $ref : " #/components/examples/statusModulesLangLib"
4031
4040
4032
- " 404":
4033
- $ref : " #/components/responses/responseNotFound"
4041
+ " 404 " :
4042
+ $ref : " #/components/responses/responseNotFound"
4034
4043
4035
4044
/status/connections :
4036
4045
summary : " Endpoint for the `connections` status object"
@@ -4474,6 +4483,14 @@ components:
4474
4483
schema :
4475
4484
type : string
4476
4485
4486
+ langMod :
4487
+ in : path
4488
+ description : " A language modules name in the modules status."
4489
+ name : langMod
4490
+ required : true
4491
+ schema :
4492
+ type : string
4493
+
4477
4494
listenerName :
4478
4495
in : path
4479
4496
description : " Listener name; a unique combination of a host IP address
@@ -6495,7 +6512,9 @@ components:
6495
6512
statusModulesLang :
6496
6513
description : " Lists currently loaded versions of the specified language
6497
6514
module."
6498
- type : array or object
6515
+ oneOf :
6516
+ - type : string
6517
+ - type : object
6499
6518
6500
6519
# /status/modules/{langMod}/version
6501
6520
statusModulesLangVersion :
0 commit comments