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": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "description": "Title of the report",
         "title": "Title"
      },
      "summary": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "description": "Summary information (markdown formatted).",
         "title": "Summary"
      },
      "text": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "description": "Extended report (markdown)",
         "title": "Text"
      }
   }
}

Fields:
field summary: str | None = None

Summary information (markdown formatted).

field text: str | None = None

Extended report (markdown)

field title: str | None = None

Title of the report