Skip to content

Commit

Permalink
fix: correct OAS example (#816)
Browse files Browse the repository at this point in the history
Signed-off-by: Pat Losoponkul <[email protected]>
Signed-off-by: Shota Jolbordi <[email protected]>
  • Loading branch information
patlo-iog authored and Shota Jolbordi committed Mar 18, 2024
1 parent 8edbfc0 commit 042eeba
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,11 @@ object IssueCredentialRecord {
)

object claims
extends Annotation[Map[String, String]](
extends Annotation[zio.json.ast.Json](
description = "The claims that will be associated with the issued verifiable credential.",
example = Map(
"firstname" -> "Alice",
"lastname" -> "Wonderland"
example = zio.json.ast.Json.Obj(
"firstname" -> zio.json.ast.Json.Str("Alice"),
"lastname" -> zio.json.ast.Json.Str("Wonderland"),
)
)

Expand Down

0 comments on commit 042eeba

Please sign in to comment.