Skill Profiling via Modeled Data

In this example we will be skill profiling using the Classification, DDN, and similarity APIs.

Top "distinguishing","defining" and "necessary" skills by Lightcast Specialized Occupation

Request #1

POST https://emsiservices.com/ddn/dimensions/lotspecocc
{ 
  "id": "27111221"
}

Response #1

{  
  "data": { 
    "id": "27111221",  
    "name": "Marketing Director",        
    "region": {           
      "nation": "us",      
      "level": "nation",      
      "id": "0",          
      "name": "United States"   
    },       
    "definingSkills": [
      {            
        "id": "KS124QR6F19BX4WPMW1H",    
        "name": "Marketing"       
      },          
      {           
        "id": "KS1256W6MPKRNM11QMPM", 
        "name": "Marketing Strategies" 
      },           
      {            
        "id": "BGS3C9BE4BAE8DF7B0AD", 
        "name": "Marketing Budgets"   
      }       
    ],       
    "distinguishingSkills": [   
      {              
        "id": "KS126SG6WPC673G28PWN",   
        "name": "Multi-Channel Marketing"    
      },         
      {           
        "id": "ES5462EA589524327CEF",     
        "name": "Market Access Strategy"     
      }       
    ],     
    "necessarySkills": [ 
      {              
        "id": "KS1265P60HXFPH0VLFVP",   
        "name": "Marketing Planning"      
      },         
      {       
        "id": "KS1265M698X7BRS20SWP",  
        "name": "Marketing Management" 
      },            
      {               
        "id": "KS120VC7108H86J50CYW",  
        "name": "Business To Business"    
      },          
      {               
        "id": "KS120GV5ZXR64CJLL1J4",    
        "name": "Analytics"       
      },          
      {            
        "id": "KS12160602V51N7SJSX8",    
        "name": "Brand Management"        
      }
      ],
  }
}

Side Gets?

GET https://classification.emsicloud.com/taxonomies/lot/versions/6.5.0/concepts?fields=name,id,level,levelName,descriptionUs&q=27111221
{   
  "data": [ 
    {  
      "id": "27111221",    
      "name": "Marketing Director",  
      "levelName": "specializedOccupation", 
      "level": 3,           
      "descriptionUs": "A Marketing Director manages the development and execution of a marketing strategy for a business, organization, particular product or group of products. Oversees marketing and advertising staff. Monitors demand for company products or services, business and industry competition, and prices. Identifies potential new customers; develops strategies for increasing sales or market share."    
    } 
  ],   
  "warnings": [],
  "errors": []
}

Top "similar" skills by Lightcast Specialized Occupation

Request #1

POST https://emsiservices.com/similarity/models/lotspecocc-skill
{ 
  "input":   
  "27111221",   
  "filter": {        
    "minScore": 0.4   
  },          
  "limit": 5  
}

Response #1

{   
  "data": [   
    {       
      "id": "KS124QR6F19BX4WPMW1H", 
      "name": "Marketing",  
      "score": 0.9358   
    },        
    {           
      "id": "KS122556LMQ829GZCCRV",   
      "name": "Communications", 
      "score": 0.80264     
    },       
    {       
      "id": "KS124JB619VXG6RQ810C",      
      "name": "Leadership",       
      "score": 0.74741     
    },      
    {         
      "id": "KS123X777H5WFNXQ6BPM",   
      "name": "Sales",            
      "score": 0.70751    
    },      
    {           
      "id": "KS1218W78FGVPVP2KXPX",   
      "name": "Management",  
      "score": 0.65387       
    }    
  ] 
}

Side Get?

GET https://classification.emsicloud.com/taxonomies/lot/versions/6.5.0/concepts?fields=name,id,level,levelName,descriptionUs&q=27111221
{  
  "data": [ 
    {        
      "id": "27111221", 
      "name": "Marketing Director",    
      "levelName": "specializedOccupation",
      "level": 3,         
      "descriptionUs": "A Marketing Director manages the development and execution of a marketing strategy for a business, organization, particular product or group of products. Oversees marketing and advertising staff. Monitors demand for company products or services, business and industry competition, and prices. Identifies potential new customers; develops strategies for increasing sales or market share."  
    } 
  ],    
  "warnings": [], 
  "errors": []
}