Apideck · Schema

SharedLinkTarget

IntegrationsUnified API

Properties

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

JSON Schema

apideck-sharedlinktarget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SharedLinkTarget",
  "title": "SharedLinkTarget",
  "type": "object",
  "x-apideck-schema-id": "SharedLinkTarget",
  "additionalProperties": false,
  "required": [
    "id"
  ],
  "x-apideck-weights": {
    "id": "critical"
  },
  "properties": {
    "id": {
      "$ref": "#/components/schemas/Id"
    },
    "name": {
      "type": "string",
      "description": "The name of the file",
      "example": "sample.jpg",
      "nullable": true
    },
    "type": {
      "$ref": "#/components/schemas/FileType"
    }
  },
  "readOnly": true
}