1
0
Fork 0
golang-forgejo-f3-gof3/f3/schemas/topic.json

26 lines
687 B
JSON
Raw Permalink Normal View History

{
"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"
}