# Server

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    Server:
      type: object
      required:
        - id
        - country
        - city
        - flag
        - status
      properties:
        id:
          type: string
          description: Unique identifier for the server location (group or specific ID).
          examples:
            - eu-de
        country:
          type: string
          examples:
            - Germany
        city:
          type: string
          examples:
            - Nuremberg
        flag:
          type: string
          examples:
            - 🇩🇪
        status:
          type: string
          enum:
            - online
            - offline
          description: Health status of the VPN node.
      x-apidog-orders:
        - id
        - country
        - city
        - flag
        - status
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://tunnelsats.com
    description: Prod Env
security: []

```