Apideck · Schema

Drive

IntegrationsUnified API

Properties

Name Type Description
id object
name string The name of the drive
description object
custom_mappings object
updated_by object
created_by object
updated_at object
created_at object
pass_through object
View JSON Schema on GitHub

JSON Schema

apideck-drive-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Drive",
  "title": "Drive",
  "type": "object",
  "x-apideck-schema-id": "Drive",
  "additionalProperties": false,
  "required": [
    "id",
    "name"
  ],
  "x-apideck-weights": {
    "id": "critical",
    "name": "critical",
    "updated_at": "critical",
    "updated_by": "edge-case",
    "created_at": "critical",
    "created_by": "edge-case"
  },
  "properties": {
    "id": {
      "$ref": "#/components/schemas/Id"
    },
    "name": {
      "type": "string",
      "description": "The name of the drive",
      "example": "Project Resources"
    },
    "description": {
      "$ref": "#/components/schemas/Description"
    },
    "custom_mappings": {
      "$ref": "#/components/schemas/CustomMappings"
    },
    "updated_by": {
      "$ref": "#/components/schemas/UpdatedBy"
    },
    "created_by": {
      "$ref": "#/components/schemas/CreatedBy"
    },
    "updated_at": {
      "$ref": "#/components/schemas/UpdatedAt"
    },
    "created_at": {
      "$ref": "#/components/schemas/CreatedAt"
    },
    "pass_through": {
      "$ref": "#/components/schemas/PassThroughBody"
    }
  }
}