Skip to content

Commit

Permalink
Add Oracle JSON instances
Browse files Browse the repository at this point in the history
  • Loading branch information
fendor committed Sep 23, 2024
1 parent 474d301 commit 62c9440
Show file tree
Hide file tree
Showing 5 changed files with 396 additions and 6 deletions.
1 change: 1 addition & 0 deletions lib/haskell/web-service/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ description: Please see the README on GitHub at <https://github.com/gith
dependencies:
- base >= 4.7 && < 5
- aeson
- aeson-combinators
- bytestring
- containers
- extra
Expand Down
101 changes: 101 additions & 0 deletions lib/haskell/web-service/src/Schema.hs
Original file line number Diff line number Diff line change
Expand Up @@ -274,3 +274,104 @@ instance ToParamSchema (Map Text FnLiteral) where
, "amount" .= Aeson.Number 2.0
]
& description ?~ "Provide arguments to the function to be invoked."

instance ToSchema BatchRequest where
declareNamedSchema _ = do
textRef <- declareSchemaRef (Proxy @Text)
let
intRef =
Inline $
(toParamSchema $ Proxy @Int)
& default_ ?~ Aeson.Number 0
& example ?~ Aeson.Number 0
pure $
NamedSchema (Just "BatchRequest") $
mempty
& type_ ?~ OpenApiObject
& title ?~ "Batch Request"
& properties
.~ [
( "outcomes"
, Inline $
mempty
& type_ ?~ OpenApiArray
& items
?~ OpenApiItemsObject
( Inline $
mempty
& oneOf
?~ [ textRef
, Inline $
mempty
& type_ ?~ OpenApiObject
& additionalProperties ?~ AdditionalPropertiesAllowed True
& properties
.~ [ ("@id", textRef)
]
]
)
)
,
( "cases"
, Inline $
mempty
& type_ ?~ OpenApiArray
& items
?~ OpenApiItemsObject
( Inline $
mempty
& additionalProperties ?~ AdditionalPropertiesAllowed True
& type_ ?~ OpenApiObject
& properties
.~ [ ("@id", intRef)
]
)
)
]

instance ToSchema BatchResponse where
declareNamedSchema _ = do
let
intRef =
Inline $
(toParamSchema $ Proxy @Int)
& default_ ?~ Aeson.Number 0
& example ?~ Aeson.Number 0
doubleRef <- declareSchemaRef (Proxy @Double)
pure $
NamedSchema (Just "BatchResponse") $
mempty
& type_ ?~ OpenApiObject
& title ?~ "Batch Response"
& properties
.~ [
( "cases"
, Inline $
mempty
& type_ ?~ OpenApiArray
& items
?~ OpenApiItemsObject
( Inline $
mempty
& type_ ?~ OpenApiObject
& additionalProperties ?~ AdditionalPropertiesAllowed True
& properties
.~ [("@id", intRef)]
)
)
,
( "summary"
, Inline $
mempty
& type_ ?~ OpenApiArray
& type_ ?~ OpenApiObject
& properties
.~ [ ("casesRead", intRef)
, ("casesProcessed", intRef)
, ("casesIgnored", intRef)
, ("processorDurationSec", doubleRef)
, ("processorCasesPerSec", doubleRef)
, ("processorQueuedSec", doubleRef)
]
)
]
Loading

0 comments on commit 62c9440

Please sign in to comment.