FacetFlux

pim.attributeDefinitions.get

Get an attribute definition by id, with full metadata (validation rules, allowed-value count, guidance text, unit conversion config). To enumerate the actual allowed values, call pim.attributeDefinitions.allowedValues.list (Phase 2). Response: { attributeDefinition: {...} }. Errors: { error: { code: 'not_found', ... } }.

Remote revuo:facetflux

Other tools also called pim.attributeDefinitions.get? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "attributeDefinitionId": {
      "description": "Attribute definition id (Mongo ObjectId).",
      "type": "string"
    }
  },
  "required": [
    "attributeDefinitionId"
  ]
}