Autodesk · Schema

Folder

Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability

Properties

Name Type Description
type string
id string
attributes object
View JSON Schema on GitHub

JSON Schema

autodesk-folder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Folder",
  "title": "Folder",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "example": "folders"
    },
    "id": {
      "type": "string"
    },
    "attributes": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "displayName": {
          "type": "string"
        },
        "createTime": {
          "type": "string",
          "format": "date-time"
        },
        "createUserId": {
          "type": "string"
        },
        "createUserName": {
          "type": "string"
        },
        "lastModifiedTime": {
          "type": "string",
          "format": "date-time"
        },
        "lastModifiedUserId": {
          "type": "string"
        },
        "lastModifiedUserName": {
          "type": "string"
        },
        "objectCount": {
          "type": "integer"
        },
        "extension": {
          "$ref": "#/components/schemas/Extension"
        },
        "hidden": {
          "type": "boolean"
        }
      }
    }
  }
}