File Check

APIs.ioEngineeringPlatform

Properties

Name Type Description
exists boolean Whether or not file exists
operating_system string Operating system
path string File path.
sha256 string SHA-256.
thumbprint string Signing certificate thumbprint.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-teams-devices-file-input-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/teams-devices_file_input_request",
  "title": "File Check",
  "properties": {
    "exists": {
      "description": "Whether or not file exists",
      "example": true,
      "type": "boolean"
    },
    "operating_system": {
      "description": "Operating system",
      "enum": [
        "windows",
        "linux",
        "mac"
      ],
      "example": "mac",
      "type": "string"
    },
    "path": {
      "description": "File path.",
      "example": "/bin/cat",
      "type": "string"
    },
    "sha256": {
      "description": "SHA-256.",
      "example": "https://api.us-2.crowdstrike.com",
      "type": "string"
    },
    "thumbprint": {
      "description": "Signing certificate thumbprint.",
      "example": "0aabab210bdb998e9cf45da2c9ce352977ab531c681b74cf1e487be1bbe9fe6e",
      "type": "string"
    }
  },
  "required": [
    "path",
    "operating_system"
  ],
  "type": "object"
}