bibliotekar.Author#

pydantic model bibliotekar.Author[source]#

Metadata about and author of some code.

Show JSON schema
{
   "title": "Author",
   "description": "Metadata about and author of some code.",
   "type": "object",
   "properties": {
      "name": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Name"
      },
      "email": {
         "anyOf": [
            {
               "type": "string"
            },
            {
               "type": "null"
            }
         ],
         "default": null,
         "title": "Email"
      }
   }
}

Fields:
  • email (str | None)

  • name (str | None)

field email: str | None = None#

The email address of the author.

field name: str | None = None#

The name of the author.

check_minimal()[source]#
Return type:

list[tuple[str, str]]