vLex · Capability

vLex Iceberg Anonymization API — Anonymization

vLex Iceberg Anonymization API — Anonymization. 2 operations. Lead operation: Anonymize Text. Self-contained Naftiko capability covering one Vlex business surface.

Run with Naftiko VlexAnonymization

What You Can Do

POST
Anonymizetext — Anonymize Text
/v1/v1/anonymize
POST
Extractentities — Extract Named Entities
/v1/v1/anonymize/entities

MCP Tools

anonymize-text

Anonymize Text

extract-named-entities

Extract Named Entities

Capability Spec

iceberg-anonymization-anonymization.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: vLex Iceberg Anonymization API — Anonymization
  description: 'vLex Iceberg Anonymization API — Anonymization. 2 operations. Lead operation: Anonymize Text. Self-contained
    Naftiko capability covering one Vlex business surface.'
  tags:
  - Vlex
  - Anonymization
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    VLEX_API_KEY: VLEX_API_KEY
capability:
  consumes:
  - type: http
    namespace: iceberg-anonymization-anonymization
    baseUri: https://api.vlex.com
    description: vLex Iceberg Anonymization API — Anonymization business capability. Self-contained, no shared references.
    resources:
    - name: v1-anonymize
      path: /v1/anonymize
      operations:
      - name: anonymizetext
        method: POST
        description: Anonymize Text
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v1-anonymize-entities
      path: /v1/anonymize/entities
      operations:
      - name: extractentities
        method: POST
        description: Extract Named Entities
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: Ocp-Apim-Subscription-Key
      value: '{{env.VLEX_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: iceberg-anonymization-anonymization-rest
    port: 8080
    description: REST adapter for vLex Iceberg Anonymization API — Anonymization. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/v1/anonymize
      name: v1-anonymize
      description: REST surface for v1-anonymize.
      operations:
      - method: POST
        name: anonymizetext
        description: Anonymize Text
        call: iceberg-anonymization-anonymization.anonymizetext
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/anonymize/entities
      name: v1-anonymize-entities
      description: REST surface for v1-anonymize-entities.
      operations:
      - method: POST
        name: extractentities
        description: Extract Named Entities
        call: iceberg-anonymization-anonymization.extractentities
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: iceberg-anonymization-anonymization-mcp
    port: 9090
    transport: http
    description: MCP adapter for vLex Iceberg Anonymization API — Anonymization. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: anonymize-text
      description: Anonymize Text
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: iceberg-anonymization-anonymization.anonymizetext
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: extract-named-entities
      description: Extract Named Entities
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: iceberg-anonymization-anonymization.extractentities
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.