Autodesk · Schema

ScanRequest

Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainability

Properties

Name Type Description
families array Filter by Revit family names.
categoryId integer Filter by category ID.
includeHistory boolean
columns array Property columns to return.
View JSON Schema on GitHub

JSON Schema

autodesk-scanrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScanRequest",
  "title": "ScanRequest",
  "type": "object",
  "properties": {
    "families": {
      "type": "array",
      "description": "Filter by Revit family names.",
      "items": {
        "type": "string"
      }
    },
    "categoryId": {
      "type": "integer",
      "description": "Filter by category ID."
    },
    "includeHistory": {
      "type": "boolean"
    },
    "columns": {
      "type": "array",
      "description": "Property columns to return.",
      "items": {
        "type": "object",
        "properties": {
          "fam": {
            "type": "string"
          },
          "col": {
            "type": "string"
          }
        }
      }
    }
  }
}