1
0
Fork 0
golang-forgejo-f3-gof3/f3/schemas/topic.json
Daniel Baumann 03bfe4079e
Adding upstream version 3.10.8.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-18 09:37:23 +02:00

25 lines
687 B
JSON

{
"title": "Topic",
"description": "A category associated with a project. There can be multiple topics/categories for a given project.",
"type": "object",
"additionalProperties": false,
"properties": {
"index": {
"description": "Unique identifier.",
"type": "string"
},
"name": {
"description": "The name of the category the project belongs to.",
"type": "string"
}
},
"required": [
"index",
"name"
],
"$schema": "http://json-schema.org/draft-04/schema#",
"$id": "https://code.forgejo.org/f3/f3-schemas/src/branch/main/topic.json",
"$$target": "topic.json"
}