File

src/app/features/skill/skill-api/external-profile.ts

Description

Skill data in a profile from an external system.

Index

Properties

Properties

escoUri
escoUri: string
Type : string

The URI representing a specific skill in the ESCO classification. see https://esco.ec.europa.eu/en/classification/skill_main

usage
usage: "ALMOST_NEVER" | "SOMETIMES" | "OFTEN" | "ALMOST_ALWAYS" | "ALWAYS"
Type : "ALMOST_NEVER" | "SOMETIMES" | "OFTEN" | "ALMOST_ALWAYS" | "ALWAYS"

the frequency of using this skill

export interface ExternalProfile {
  id: string;
  fullName: string;
  phone: string;
  email: string;
  skills: ExternalSkill[];
  updatedAtExternalSystem: string;
  importedAt: string;
  latestSyncAt: string;
}

/**
 * Skill data in a profile from an external system.
 */
export interface ExternalSkill {
  /**
   * The URI representing a specific skill in the ESCO classification.
   * see https://esco.ec.europa.eu/en/classification/skill_main
   */
  escoUri: string;

  /**
   * the frequency of using this skill
   */
  usage: "ALMOST_NEVER" | "SOMETIMES" | "OFTEN" | "ALMOST_ALWAYS" | "ALWAYS";
}

results matching ""

    No results matching ""