Skip to content

Commit

Permalink
fix: make inputs a string type and nullable fields for archivedAt(#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
viveknair committed Jun 5, 2023
1 parent a659cc5 commit 900aad2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -515,18 +515,20 @@ components:
description: The date and time when the test case was created
archivedAt:
type: string
nullable: true
format: date-time
description: The date and time when the test case was archived
description: The date and time when the test case was archived, can be null if the test case has not been archived
updatedAt:
type: string
format: date-time
description: The date and time when the test case was last updated
expected:
type: string
nullable: true
description: The expected output for the test case
inputs:
type: object
description: The input data for the test case
type: string
description: The input data for the test case as a JSON string
name:
type: string
description: The name of the test case
Expand Down

0 comments on commit 900aad2

Please sign in to comment.