FacetFlux

pim.schemas.list

List PIM schemas in the current tenant. By default returns only tenant-owned, editable schemas (Master + Recipient). To inspect Import (file-import) or Standard (eClass/ETIM/UNSPSC) or Connector schemas, pass `kind` explicitly. Response: { schemas: [{ id, name, kind, contentLanguage, productTypeCount, traitCount, categoryCount, attributeDefinitionCount, isReadOnly, updatedAt }] }. Errors: { error: { code: 'bad_input', ... } }.

Remote revuo:facetflux

Other tools also called pim.schemas.list? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "kind": {
      "description": "Optional schema kind filter. Omit to default to tenant-owned schemas (Master + Recipient). Allowed: master, import, standard, connector, recipient.",
      "type": [
        "string",
        "null"
      ],
      "enum": [
        "Master",
        "Import",
        "Standard",
        "Connector",
        "Recipient",
        null
      ],
      "default": null
    }
  }
}