Skip to content

Commit

Permalink
add zk8s open api
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrl-alt-lulz committed Feb 24, 2024
1 parent a58ea66 commit e35438b
Show file tree
Hide file tree
Showing 5 changed files with 591 additions and 1 deletion.
89 changes: 89 additions & 0 deletions .openapi/mockingbird.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,95 @@ components:
type: string
orchestrationName:
type: string
EntitiesFilter:
type: object
properties:
nickname:
type: string
platform:
type: string
firstName:
type: string
nullable: true
lastName:
type: string
nullable: true
labels:
type: array
items:
type: string
metadataJsonb:
type: string
format: byte
nullable: true
metadataText:
type: string
nullable: true
sinceUnixTimestamp:
type: integer
nullable: true
required:
- nickname
- platform
- labels
UserEntity:
type: object
properties:
entityId:
type: integer
nickname:
type: string
platform:
type: string
firstName:
type: string
nullable: true
lastName:
type: string
nullable: true
mdSlice:
type: array
items:
$ref: '#/components/schemas/UserEntityMetadata'
required:
- entityId
- nickname
- platform
UserEntityMetadata:
type: object
properties:
entityMetadataId:
type: integer
entityId:
type: integer
jsonData:
type: string
format: byte
nullable: true
textData:
type: string
nullable: true
labels:
type: array
items:
$ref: '#/components/schemas/UserEntityMetadataLabel'
required:
- entityMetadataId
- entityId

UserEntityMetadataLabel:
type: object
properties:
entityMetadataLabelId:
type: integer
entityMetadataId:
type: integer
label:
type: string
required:
- entityMetadataLabelId
- entityMetadataId
- label
AggregatedData:
type: object
properties:
Expand Down
Loading

0 comments on commit e35438b

Please sign in to comment.