model_store.model.get_info
Note
This document has been machine translated.
Obtains information on models registered in the model store.
Parameters
- model_store_ddc:
string-- model store name. - conds:
condition-- Condition to retrieve. - offset:
integer-- Acquisition start position. - limit:
integer-- The number of items to retrieve. - order:
string-- The column name on which to sort the results.
Return Values
Model information is returned as an array.
See model_info for details.
Execution example
Request Data
{
"id": 1,
"jsonrpc": "2.0",
"method": "model_store.model.get_info",
"params": {
"model_store_ddc": "my_store",
"conds": {
"=": ["model_state", 10]
},
"offset": 0,
"limit": 1,
"order": "-start_datetime"
}
}
Request Execution
curl -H "Content-type: application/json" \
-H "APIKey: 9c6f4574-89d1-4e3c-8af7-2549dc217fcf" \
-H "Secret: aef8caingiej1ieNieJ3Phool4maeGohcies" \
-X POST -d "@request.json" \
https://localhost/api/v2/model_store/jsonrpc
Response
{
"result": [
{
"start_datetime": {
"_type": "datetime",
"val": "2025-07-11T14:35:29.520625+09:00"
},
"end_datetime": {
"_type": "datetime",
"val": "2025-07-11T14:35:29.520628+09:00"
},
"location": "010100000000000000000000000000000000000000",
"tenant_id": "id-party",
"model_id": "b9817ad7-3c69-4beb-ba45-633e139a59aa",
"model_kind": "my_model",
"model_description": "this is my sample model",
"model_meta": {
"version": "1",
"created": "2025-07-01 01:02:03",
"loss": 0.123
},
"model_state": 10,
"model_hash": "e9a5b77d4b6794a47ad0ba1682185148",
"model_size": 17,
"round": 0,
"hop_count": 0
}
],
"id": 1,
"jsonrpc": "2.0"
}