26 lines
687 B
JSON
26 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"
|
||
|
}
|