ga4gh / task-execution-schemas

Apache License 2.0
81 stars 28 forks source link

`zones` should be array in example not `string` #203

Open JaeAeich opened 2 months ago

JaeAeich commented 2 months ago
...
zones:
  type: array
  description: |-
    Request that the task be run in these compute zones. How this string
    is utilized will be dependent on the backend system. For example, a
    system based on a cluster queueing system may use this string to define
    priorty queue to which the job is assigned.
  items:
    type: string
  example: us-west-1 ----> ["us-west-1"]
...