{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LabelCreate", "title": "LabelCreate", "required": [ "name", "prefix" ], "type": "object", "additionalProperties": true, "properties": { "prefix": { "type": "string", "description": "The prefix for the label. `global`, `my` `team`, etc.", "example": "example_value" }, "name": { "type": "string", "description": "The name of the label, which will be shown in the UI.", "example": "Example Title" } } }