@@ -86,7 +86,7 @@ class TesExecutor(BaseModel):
8686 example = {"BLASTDB" : "/data/GRC38" , "HMMERDB" : "/data/hmmer" },
8787 )
8888 ignore_error : Optional [bool ] = Field (
89- default = False ,
89+ default = None ,
9090 description = "Default behavior of running an array of executors is that "
9191 "execution\n stops on the first error. If `ignore_error` is `True`, then "
9292 "the\n runner will record error exit codes, but will continue on to the "
@@ -154,7 +154,7 @@ class TesInput(BaseModel):
154154 description = "Path of the file inside the container.\n Must be an absolute path." ,
155155 example = "/data/file1" ,
156156 )
157- type : Optional [TesFileType ] = Field ( default = TesFileType .FILE )
157+ type : Optional [TesFileType ] = TesFileType .FILE
158158 content : Optional [str ] = Field (
159159 default = None ,
160160 description = "File content literal.\n \n Implementations should support a minimum "
@@ -337,9 +337,9 @@ class Service(BaseModel):
337337 id : str = Field (
338338 ...,
339339 description = "Unique ID of this service. Reverse domain name notation is "
340- "recommended, though not required. The identifier should attempt to be globally "
341- " unique so it can be used in downstream aggregator services e.g. Service "
342- "Registry." ,
340+ "recommended, though not required. The identifier should attempt to be "
341+ "globally unique so it can be used in downstream aggregator services e.g. "
342+ "Service Registry." ,
343343 example = "org.ga4gh.myservice" ,
344344 )
345345 name : str = Field (
@@ -357,7 +357,7 @@ class Service(BaseModel):
357357 organization : Organization = Field (
358358 ..., description = "Organization providing the service"
359359 )
360- contactUrl : Optional [AnyUrl ] = Field (
360+ contactUrl : Optional [str ] = Field (
361361 default = None ,
362362 description = "URL of the contact for the provider of this service, e.g. a link "
363363 "to a contact form (RFC 3986 format), or an email (RFC 2368 format)." ,
@@ -486,7 +486,7 @@ class TesTask(BaseModel):
486486 description = "Task identifier assigned by the server." ,
487487 example = "job-0012345" ,
488488 )
489- state : Optional [TesState ] = Field ( default = TesState .UNKNOWN )
489+ state : Optional [TesState ] = TesState .UNKNOWN
490490 name : Optional [str ] = Field (None , description = "User-provided task name." )
491491 description : Optional [str ] = Field (
492492 default = None ,
0 commit comments