From 4cc0de630f59a732f72f8d712e2c39e6c49c2ed3 Mon Sep 17 00:00:00 2001 From: Jan Eitzinger Date: Tue, 3 May 2022 15:58:30 +0200 Subject: [PATCH] Use string instead of int for acc device ids --- datastructures/job-meta.schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/datastructures/job-meta.schema.json b/datastructures/job-meta.schema.json index 015e36c..e685f63 100644 --- a/datastructures/job-meta.schema.json +++ b/datastructures/job-meta.schema.json @@ -109,9 +109,9 @@ }, "accelerators": { "type": "array", - "description": "List of of accelerator ids", + "description": "List of of accelerator device ids", "items": { - "type": "integer" + "type": "string" } }, "configuration": {