taxonomyAttributesForJobData
Lists attributes in the specified text.
Arguments
input TaxonomyAttributesForJobDataInput! Required
description String
Job description.
title String
Job title.
company String
Company name for the job.
location String
Job location.
countryCode CountryCode
Two-character country code in ISO 3166-1 alpha-2 format.
languageCode LanguageCode
Two-character language code in ISO 639 format.
Response
Returns TaxonomyAttributesExtractionPayload .attributes [MetadataTaxonomyAttribute!]! Non-Null
Extracted attributes.
attribute TaxonomyConcept! Non-Null
Extracted attribute.
key ID! Non-Null
Short unique ID (SUID) of the taxonomy concept. Primary key.
uuid ID! Non-Null
Universal unique ID (UUID) of the taxonomy concept. Prefer key instead.
mobileLabel String! Non-Null
Display label for the concept.
definitions [String!]! Non-Null
Definitions for the concept.
pathToRoot [TaxonomyConcept!]! Non-Null
Path from this concept to the taxonomy root.
children [TaxonomyConcept!]! Non-Null
Direct children of this concept in the taxonomy tree.
customClasses [CustomTaxonomyClass!]! Non-Null
Custom classes the concept belongs to.
Example: "Cross-Occupational Cluster"
taxonomyConceptType TaxonomyConceptType! Non-Null
Concept type.
isVerifiedJobAttribute Boolean! Non-Null
Whether the concept is a verified job attribute. Applies only when taxonomyConceptType is ATTRIBUTE.
isVerifiedResumeAttribute Boolean! Non-Null
Whether the concept is a verified resume attribute. Applies only when taxonomyConceptType is ATTRIBUTE.
extractedLocation MetadataTaxonomyExtractedLocation! Non-Null
Location where the attribute was found.
documentSectionType MetadataTaxonomyDocumentSectionType! Non-Null
Job posting section where the text was extracted.
begin Int! Non-Null
Start offset where the metadata was extracted.
end Int! Non-Null
End offset where the metadata was extracted.
textContent [MetadataTaxonomyTextContent!]! Non-Null
Text contents extracted from the input.
text String! Non-Null
Extracted text.
documentSectionType MetadataTaxonomyDocumentSectionType! Non-Null
Job posting section where metadata was extracted.
Example
Query
query TaxonomyAttributesForJobData($input: TaxonomyAttributesForJobDataInput!) { taxonomyAttributesForJobData(input: $input) { attributes { attribute { key uuid label alternativeLabels mobileLabel definitions pathToRoot { key uuid label alternativeLabels mobileLabel definitions pathToRoot { key uuid label alternativeLabels mobileLabel definitions pathToRoot { ...TaxonomyConceptFragment } children { ...TaxonomyConceptFragment } customClasses { ...CustomTaxonomyClassFragment } taxonomyConceptType isVerifiedJobAttribute isVerifiedResumeAttribute } children { key uuid label alternativeLabels mobileLabel definitions pathToRoot { ...TaxonomyConceptFragment } children { ...TaxonomyConceptFragment } customClasses { ...CustomTaxonomyClassFragment } taxonomyConceptType isVerifiedJobAttribute isVerifiedResumeAttribute } customClasses { key uuid label } taxonomyConceptType isVerifiedJobAttribute isVerifiedResumeAttribute } children { key uuid label alternativeLabels mobileLabel definitions pathToRoot { key uuid label alternativeLabels mobileLabel definitions pathToRoot { ...TaxonomyConceptFragment } children { ...TaxonomyConceptFragment } customClasses { ...CustomTaxonomyClassFragment } taxonomyConceptType isVerifiedJobAttribute isVerifiedResumeAttribute } children { key uuid label alternativeLabels mobileLabel definitions pathToRoot { ...TaxonomyConceptFragment } children { ...TaxonomyConceptFragment } customClasses { ...CustomTaxonomyClassFragment } taxonomyConceptType isVerifiedJobAttribute isVerifiedResumeAttribute } customClasses { key uuid label } taxonomyConceptType isVerifiedJobAttribute isVerifiedResumeAttribute } customClasses { key uuid label } taxonomyConceptType isVerifiedJobAttribute isVerifiedResumeAttribute } extractedLocation { documentSectionType begin end } } textContent { text documentSectionType } }}Variables
{"input": TaxonomyAttributesForJobDataInput}Response
{ "data": { "taxonomyAttributesForJobData": { "attributes": [MetadataTaxonomyAttribute], "textContent": [MetadataTaxonomyTextContent] } }}