GitHubCheckRunOutput#

pydantic model safir.github.models.GitHubCheckRunOutput#

Check run output report.

Parameters:

data (Any) –

Show JSON schema
{
   "title": "GitHubCheckRunOutput",
   "description": "Check run output report.",
   "type": "object",
   "properties": {
      "title": {
         "title": "Title",
         "description": "Title of the report",
         "type": "string"
      },
      "summary": {
         "title": "Summary",
         "description": "Summary information (markdown formatted).",
         "type": "string"
      },
      "text": {
         "title": "Text",
         "description": "Extended report (markdown)",
         "type": "string"
      }
   }
}

Fields:
field summary: Optional[str] = None#

Summary information (markdown formatted).

field text: Optional[str] = None#

Extended report (markdown)

field title: Optional[str] = None#

Title of the report