Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • arkindex/api-client
1 result
Show changes
Commits on Source (2)
......@@ -33,6 +33,8 @@ paths:
classifications:
items:
properties:
best:
type: boolean
class_name:
type: string
confidence:
......@@ -61,6 +63,8 @@ paths:
classifications:
items:
properties:
best:
type: boolean
class_name:
type: string
confidence:
......@@ -133,12 +137,6 @@ paths:
application/json:
schema:
properties:
confidence:
nullable: true
type: number
id:
format: uuid
type: string
ml_class:
properties:
id:
......@@ -196,11 +194,15 @@ paths:
application/json:
schema:
properties:
best:
readOnly: true
type: boolean
confidence:
nullable: true
readOnly: true
type: number
id:
format: uuid
readOnly: true
type: string
ml_class:
properties:
......@@ -271,12 +273,6 @@ paths:
application/json:
schema:
properties:
confidence:
nullable: true
type: number
id:
format: uuid
type: string
ml_class:
properties:
id:
......@@ -334,11 +330,15 @@ paths:
application/json:
schema:
properties:
best:
readOnly: true
type: boolean
confidence:
nullable: true
readOnly: true
type: number
id:
format: uuid
readOnly: true
type: string
ml_class:
properties:
......@@ -1049,13 +1049,13 @@ paths:
parameters:
- description: ''
in: path
name: child
name: parent
required: true
schema:
type: string
- description: ''
in: path
name: parent
name: child
required: true
schema:
type: string
......@@ -1070,13 +1070,13 @@ paths:
parameters:
- description: ''
in: path
name: child
name: parent
required: true
schema:
type: string
- description: ''
in: path
name: parent
name: child
required: true
schema:
type: string
......@@ -1131,11 +1131,15 @@ paths:
classifications:
items:
properties:
best:
readOnly: true
type: boolean
confidence:
nullable: true
readOnly: true
type: number
id:
format: uuid
readOnly: true
type: string
ml_class:
properties:
......@@ -1309,11 +1313,15 @@ paths:
classifications:
items:
properties:
best:
readOnly: true
type: boolean
confidence:
nullable: true
readOnly: true
type: number
id:
format: uuid
readOnly: true
type: string
ml_class:
properties:
......@@ -1489,11 +1497,15 @@ paths:
classifications:
items:
properties:
best:
readOnly: true
type: boolean
confidence:
nullable: true
readOnly: true
type: number
id:
format: uuid
readOnly: true
type: string
ml_class:
properties:
......@@ -2938,15 +2950,13 @@ paths:
required: false
schema:
type: boolean
- description: List ordered best classifications above specified threshold for
each element. If not set, elements best_classes field will always be null
- description: List best classifications for each element. If not set, elements
best_classes field will always be null
in: query
name: best_classes
required: false
schema:
maximum: 1
minimum: 0
type: number
type: boolean
responses:
'200':
content:
......@@ -2971,11 +2981,15 @@ paths:
best_classes:
items:
properties:
best:
readOnly: true
type: boolean
confidence:
nullable: true
readOnly: true
type: number
id:
format: uuid
readOnly: true
type: string
ml_class:
properties:
......@@ -3588,15 +3602,13 @@ paths:
required: false
schema:
type: boolean
- description: List ordered best classifications above specified threshold for
each element. If not set, elements best_classes field will always be null
- description: List best classifications for each element. If not set, elements
best_classes field will always be null
in: query
name: best_classes
required: false
schema:
maximum: 1
minimum: 0
type: number
type: boolean
responses:
'200':
content:
......@@ -3621,11 +3633,15 @@ paths:
best_classes:
items:
properties:
best:
readOnly: true
type: boolean
confidence:
nullable: true
readOnly: true
type: number
id:
format: uuid
readOnly: true
type: string
ml_class:
properties:
......@@ -3896,15 +3912,13 @@ paths:
required: false
schema:
type: boolean
- description: List ordered best classifications above specified threshold for
each element. If not set, elements best_classes field will always be null
- description: List best classifications for each element. If not set, elements
best_classes field will always be null
in: query
name: best_classes
required: false
schema:
maximum: 1
minimum: 0
type: number
type: boolean
responses:
'200':
content:
......@@ -3929,11 +3943,15 @@ paths:
best_classes:
items:
properties:
best:
readOnly: true
type: boolean
confidence:
nullable: true
readOnly: true
type: number
id:
format: uuid
readOnly: true
type: string
ml_class:
properties:
......
[flake8]
max-line-length = 120
exclude=build,.eggs,.git
# Flake8 ignores multiple errors by default;
# the only interesting ignore is W503, which goes against PEP8.
# See https://lintlyci.github.io/Flake8Rules/rules/W503.html
ignore=W503