github.com/kyleu/dbaudit@v0.0.2-0.20240321155047-ff2f2c940496/.projectforge/export/models/connection.json (about)

     1  {
     2    "name": "connection",
     3    "package": "db",
     4    "description": "A connection to a database",
     5    "icon": "database",
     6    "tags": [
     7      "search"
     8    ],
     9    "columns": [
    10      {
    11        "name": "id",
    12        "type": "uuid",
    13        "pk": true,
    14        "search": true
    15      },
    16      {
    17        "name": "name",
    18        "type": "string",
    19        "tags": [
    20          "title"
    21        ]
    22      },
    23      {
    24        "name": "icon",
    25        "type": "string"
    26      },
    27      {
    28        "name": "engine",
    29        "type": {
    30          "k": "enum",
    31          "t": {
    32            "ref": "engine"
    33          }
    34        },
    35        "search": true,
    36        "indexed": true
    37      },
    38      {
    39        "name": "server",
    40        "type": "string"
    41      },
    42      {
    43        "name": "port",
    44        "type": "int",
    45        "display": "detail"
    46      },
    47      {
    48        "name": "username",
    49        "type": "string",
    50        "display": "detail"
    51      },
    52      {
    53        "name": "password",
    54        "type": "string",
    55        "display": "detail"
    56      },
    57      {
    58        "name": "database",
    59        "type": "string"
    60      },
    61      {
    62        "name": "schema",
    63        "type": "string",
    64        "display": "detail"
    65      },
    66      {
    67        "name": "conn_override",
    68        "type": "string",
    69        "display": "detail"
    70      }
    71    ],
    72    "seedData": [
    73      [
    74        "10000000-0000-0000-0000-000000000001",
    75        "Local SQL Server",
    76        "star",
    77        "mssql",
    78        "localhost",
    79        1433,
    80        "sa",
    81        "aStrongPassword123!",
    82        "Groupmatics",
    83        "",
    84        ""
    85      ]
    86    ]
    87  }