From 05e5d7e7612cc9d9b528543443a7afba5230eef6 Mon Sep 17 00:00:00 2001 From: Kilian Tyler Date: Wed, 19 Jun 2024 16:56:24 -0400 Subject: [PATCH] feat: add schema --- labelsync.schema.json | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 labelsync.schema.json diff --git a/labelsync.schema.json b/labelsync.schema.json new file mode 100644 index 0000000..5356795 --- /dev/null +++ b/labelsync.schema.json @@ -0,0 +1,34 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "The name of the label" + }, + "color": { + "type": "string", + "pattern": "^#?[0-9a-fA-F]{6}$", + "description": "A six-character hex color code, with or without a leading '#' character" + }, + "aliases": { + "type": "array", + "items": { + "type": "string" + }, + "description": "An array of alias names for the label" + }, + "description": { + "type": "string", + "description": "A description of the label" + } + }, + "required": [ + "name", + "color" + ], + "additionalProperties": false + } +}