mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 16:53:25 +01:00
3bb028cc46
JSON Schema validation for data used by Gitea during migrations Discussion at https://forum.forgefriends.org/t/common-json-schema-for-repository-information/563 Co-authored-by: Loïc Dachary <loic@dachary.org>
68 lines
1.4 KiB
JSON
68 lines
1.4 KiB
JSON
{
|
|
"title": "Milestone",
|
|
"description": "Milestone associated to a repository within a forge.",
|
|
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"title": {
|
|
"description": "Short description.",
|
|
"type": "string"
|
|
},
|
|
"description": {
|
|
"description": "Long, multiline, description.",
|
|
"type": "string"
|
|
},
|
|
"deadline": {
|
|
"description": "Deadline after which the milestone is overdue.",
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"created": {
|
|
"description": "Creation time.",
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"updated": {
|
|
"description": "Last update time.",
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"closed": {
|
|
"description": "The last time 'state' changed to 'closed'.",
|
|
"anyOf": [
|
|
{
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"state": {
|
|
"description": "A 'closed' issue will not see any activity in the future, otherwise it is 'open'.",
|
|
"enum": [
|
|
"closed",
|
|
"open"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"title",
|
|
"description",
|
|
"deadline",
|
|
"created",
|
|
"updated",
|
|
"closed",
|
|
"state"
|
|
]
|
|
},
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"$id": "http://example.com/milestone.json",
|
|
"$$target": "milestone.json"
|
|
}
|