{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/release-notes-content",
"title": "Generated Release Notes Content",
"description": "Generated name and body describing a release",
"type": "object",
"properties": {
"name": {
"description": "The generated name of the release",
"type": "string",
"example": "Release v1.0.0 is now available!"
},
"body": {
"description": "The generated body describing the contents of the release supporting markdown formatting",
"type": "string"
}
},
"required": [
"name",
"body"
]
}