Box · Schema

Shield information barrier segment

A shield information barrier segment object

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing

Properties

Name Type Description
id string The unique identifier for the shield information barrier segment
type string The type of the shield information barrier segment
shield_information_barrier object
name string Name of the shield information barrier segment
description string Description of the shield information barrier segment
created_at string ISO date time string when this shield information barrier object was created.
created_by object
updated_at string ISO date time string when this shield information barrier segment was updated.
updated_by object
View JSON Schema on GitHub

JSON Schema

box-shieldinformationbarriersegment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ShieldInformationBarrierSegment",
  "title": "Shield information barrier segment",
  "type": "object",
  "x-box-resource-id": "shield_information_barrier_segment",
  "x-box-tag": "shield_information_barrier_segments",
  "description": "A shield information barrier segment object",
  "properties": {
    "id": {
      "type": "string",
      "example": "11446498",
      "description": "The unique identifier for the shield information barrier segment"
    },
    "type": {
      "type": "string",
      "description": "The type of the shield information barrier segment",
      "example": "shield_information_barrier_segment",
      "enum": [
        "shield_information_barrier_segment"
      ]
    },
    "shield_information_barrier": {
      "$ref": "#/components/schemas/ShieldInformationBarrier--Base"
    },
    "name": {
      "type": "string",
      "example": "Investment Banking",
      "description": "Name of the shield information barrier segment"
    },
    "description": {
      "type": "string",
      "example": "'Corporate division that engages in advisory_based financial\n transactions on behalf of individuals, corporations, and governments.'",
      "description": "Description of the shield information barrier segment"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "example": "2020-06-26T18:44:45.869Z",
      "description": "ISO date time string when this shield information\nbarrier object was created."
    },
    "created_by": {
      "allOf": [
        {
          "$ref": "#/components/schemas/User--Base"
        },
        {
          "description": "The user who created this shield information barrier segment."
        }
      ]
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "example": "2020-07-26T18:44:45.869Z",
      "description": "ISO date time string when this\nshield information barrier segment was updated."
    },
    "updated_by": {
      "allOf": [
        {
          "$ref": "#/components/schemas/User--Base"
        },
        {
          "description": "The user that updated this shield information barrier segment."
        }
      ]
    }
  }
}