ModelScope三元关系的Schema应该是怎么样的呢,有实例样本吗?
ModelScope 三元关系的 schema 如下:
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "模型唯一标识符"
},
"model_name": {
"type": "string",
"description": "模型名称"
},
"scope_id": {
"type": "string",
"description": "范围唯一标识符"
},
"scope_name": {
"type": "string",
"description": "范围名称"
},
"scope_type": {
"type": "string",
"description": "范围类型"
},
"creator": {
"type": "string",
"description": "创建者"
},
"create_time": {
"type": "string",
"description": "创建时间"
},
"modifier": {
"type": "string",
"description": "最后修改者"
},
"modify_time": {
"type": "string",
"description": "最后修改时间"
}
}
}
以下是一个实例样本:
{
"id": "1234567890",
"model_name": "模型名称",
"scope_id": "9876543210",
"scope_name": "范围名称",
"scope_type": "组织",
"creator": "创建者",
"create_time": "2023-01-01 00:00:00",
"modifier": "最后修改者",
"modify_time": "2023-01-01 00:00:00"
}