Skip to main content
FuseFuse
IntegrationsJamf proActions

List computer extension attributes

List computer extension attribute definitions.

Agent markdown

computer_extension_attributes.list · Jamf Pro · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • jamf.extension_attributes.read

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
page_sizeintegerNominimum 1; maximum 100
cursorstringNominLength 1; maxLength 64

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
extension_attributesarray<object>YesmaxItems 100
extension_attributes[]objectYesadditionalProperties false
extension_attributes[].idstringYesminLength 1; maxLength 128
extension_attributes[].namestringNomaxLength 512
extension_attributes[].descriptionstringNomaxLength 1024
extension_attributes[].data_typestringNomaxLength 128
extension_attributes[].input_typestringNomaxLength 128
extension_attributes[].enabledbooleanNo
next_cursorstringNominLength 1; maxLength 64
total_countintegerNominimum 0

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "extension_attributes": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "name": {
            "type": "string",
            "maxLength": 512
          },
          "description": {
            "type": "string",
            "maxLength": 1024
          },
          "data_type": {
            "type": "string",
            "maxLength": 128
          },
          "input_type": {
            "type": "string",
            "maxLength": 128
          },
          "enabled": {
            "type": "boolean"
          }
        },
        "required": [
          "id"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "total_count": {
      "type": "integer",
      "minimum": 0
    }
  },
  "required": [
    "extension_attributes"
  ]
}