Firewall

APIs.ioEngineeringPlatform

Properties

Name Type Description
enabled boolean Enabled
operating_system string Operating System
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-teams-devices-firewall-input-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/teams-devices_firewall_input_request",
  "title": "Firewall",
  "properties": {
    "enabled": {
      "description": "Enabled",
      "example": true,
      "type": "boolean"
    },
    "operating_system": {
      "description": "Operating System",
      "enum": [
        "windows",
        "mac"
      ],
      "example": "windows",
      "type": "string"
    }
  },
  "required": [
    "operating_system",
    "enabled"
  ],
  "type": "object"
}