> ## Documentation Index
> Fetch the complete documentation index at: https://docs.missions.eutika.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Defining Learning Objectives: Professional Profiles and Functions

export const VideoCard = ({videoSrc, title}) => {
  return <div style={{
    width: '100%',
    display: 'flex',
    justifyContent: 'center',
    margin: '2rem 0'
  }}>
      <style>{`
        .video-card {
          width: 100%;
          max-width: 84%;
          border-radius: 12px;
          overflow: hidden;
          border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .video-card-header {
          padding: 10px 16px;
          margin: 0;
          text-align: center;
        }

        .video-card-title {
          margin: 0;
          font-size: 13px;
          font-weight: 400;
          color: inherit;
          font-family: inherit;
        }

        .video-card video {
          width: 100%;
          display: block;
          margin: 0;
          aspect-ratio: 16 / 9;
          object-fit: cover;
        }

        /* Modo Oscuro */
        .dark .video-card {
          border: 1px solid rgba(255, 255, 255, 0.1);
          background: #000000;
        }

        .dark .video-card-title {
          color: inherit;
        }
      `}</style>

      <div className="video-card">
        <div className="video-card-video-wrapper">
          <video src={videoSrc} autoPlay loop muted playsInline />
        </div>
        
        {title && <div className="video-card-header">
            <h3 className="video-card-title">{title}</h3>
          </div>}
      </div>
    </div>;
};

<VideoCard videoSrc="/videos/canvas-perfil.mp4" title="Professional profile editing canvas" />

The design process in Missions starts from defining learning (or validation) objectives. These objectives are established from the definition of a professional profile (or in academic programs, a graduation profile). To define the profile, professional functions and the competencies and knowledge that compose them are mapped.

**Each function represents a set of tasks and responsibilities that generate a specific, verifiable, and measurable result, and is the result of a specific combination of competencies**. The same competency can be part of more than one function. Therefore, the platform guides us in two complementary mappings, functions and competencies, which are subsequently connected in a flexible and interactive way. The declaration of functions is essential for designing truly meaningful learning experiences since it allows us to concentrate on what is really strategic for that profile and at the same time they constitute a relatively limited set (usually between 5 and 10) and more manageable (and measurable and evaluable) than the set of competencies.

**To map the competencies associated with a profile, multiple existing frameworks can be used** or new ones that the designer considers appropriate for their objectives. As an example, in our experience (working mainly with technical professional profiles) it has been very useful to organize competencies into ***toolset*, *skillset* and *mindset***. Other models use **knowledge, capabilities and competencies** or **specific and transversal competencies**, to give just a few examples. In the Missions interface, competencies are only defined generically to facilitate the implementation of any model.

<img className="block dark:hidden mx-auto" src="https://mintcdn.com/eutika/cyqx2O3qYcIvElcS/images/light/4-perfil-profesional-m-claro-en.png?fit=max&auto=format&n=cyqx2O3qYcIvElcS&q=85&s=830b25e6353e3b7272f68d687872673c" alt="Diagram of a professional profile" width="1316" height="776" data-path="images/light/4-perfil-profesional-m-claro-en.png" />

<img className="hidden dark:block mx-auto" src="https://mintcdn.com/eutika/PG285K-dir-ERIil/images/dark/4-perfil-profesional-m-oscuro-en.png?fit=max&auto=format&n=PG285K-dir-ERIil&q=85&s=e0642fde42daa49c03f4a6853b06c53c" alt="Diagram of a professional profile" width="1316" height="776" data-path="images/dark/4-perfil-profesional-m-oscuro-en.png" />
