Apideck · Schema

LinkedFolder

IntegrationsUnified API

Properties

Name Type Description
id object
name string The name of the folder
View JSON Schema on GitHub

JSON Schema

apideck-linkedfolder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LinkedFolder",
  "title": "LinkedFolder",
  "type": "object",
  "x-apideck-schema-id": "LinkedFolder",
  "x-apideck-weights": {
    "id": "critical"
  },
  "properties": {
    "id": {
      "$ref": "#/components/schemas/Id"
    },
    "name": {
      "type": "string",
      "description": "The name of the folder",
      "example": "Personal",
      "nullable": true
    }
  },
  "required": [
    "id"
  ]
}