Root Schema : ModelsCollection
Type: object
Show Source
{
"type":"object",
"properties":{
"items":{
"type":"array",
"items":{
"$ref":"#/components/schemas/ModelItemWithLinks"
}
},
"hasMore":{
"type":"boolean"
},
"limit":{
"type":"number"
},
"offset":{
"type":"number"
},
"count":{
"type":"number"
},
"links":{
"type":"array",
"items":{
"$ref":"#/components/schemas/LinkRelation"
}
}
}
}
Nested Schema : items
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/ModelItemWithLinks"
}
}
Nested Schema : links
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/LinkRelation"
}
}
Nested Schema : ModelItemWithLinks
Match All
Show Source
{
"allOf":[
{
"$ref":"#/components/schemas/ModelItem"
},
{
"type":"object",
"properties":{
"links":{
"type":"array",
"items":{
"$ref":"#/components/schemas/LinkRelation"
}
}
}
}
]
}
Nested Schema : ModelItem
Type: object
Show Source
{
"type":"object",
"properties":{
"model_name":{
"type":"string"
},
"algorithm":{
"type":"string"
},
"mining_function":{
"type":"string"
},
"creation_date":{
"type":"string"
},
"attributes":{
"type":"array",
"items":{
"$ref":"#/components/schemas/ModelAttributeItem"
}
}
}
}
Nested Schema : ModelItemWithLinks-allOf[1]
Type: object
Show Source
{
"type":"object",
"properties":{
"links":{
"type":"array",
"items":{
"$ref":"#/components/schemas/LinkRelation"
}
}
}
}
Nested Schema : attributes
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/ModelAttributeItem"
}
}
Nested Schema : ModelAttributeItem
Type: object
Show Source
{
"type":"object",
"properties":{
"name":{
"type":"string"
},
"value":{
"type":"string"
},
"data_type":{
"type":"string"
},
"data_length":{
"type":"number"
},
"vector_info":{
"type":"string",
"nullable":true
}
}
}
Nested Schema : links
Type: array
Show Source
{
"type":"array",
"items":{
"$ref":"#/components/schemas/LinkRelation"
}
}
Nested Schema : LinkRelation
Type: object
Show Source
{
"type":"object",
"properties":{
"rel":{
"type":"string"
},
"href":{
"type":"string"
}
},
"required":[
"rel",
"href"
]
}