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 <pat.losoponkul@iohk.io>
  • Loading branch information
patlo-iog authored Dec 15, 2023
1 parent 7c4bc7e commit b1384b3
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 b1384b3

Please sign in to comment.