HTML title & meta description vs. Schema.org title and description
Should the text entered as the description
(a Schema.org property) be set as the meta
-description
of the HTML page?
Consider the following content:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "JobPosting",
"baseSalary": "100000",
"jobBenefits": "Medical, Life, Dental",
"datePosted": "2011-10-31",
"description": "Description: ABC Company Inc. seeks a full-time mid-level software engineer to develop in-house tools.",
"educationRequirements": "Bachelor's Degree in Computer Science, Information Systems or related fields of study.",
"employmentType": "Full-time",
"experienceRequirements": "Minumum 3 years experience as a software engineer",
"incentiveCompensation": "Performance-based annual bonus plan, project-completion bonuses",
"industry": "Computer Software",
"jobLocation": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"addressLocality": "Kirkland",
"addressRegion": "WA"
}
},
"occupationalCategory": "15-1132.00 Software Developers, Application",
"qualifications": "Ability to work in a team environment with members of varying skill levels. Highly motivated. Learns quickly.",
"responsibilities": "Design and write specifications for tools for in-house customers Build tools according to specifications",
"salaryCurrency": "USD",
"skills": "Web application development using Java/J2EE Web application development using Python or familiarity with dynamic programming languages",
"specialCommitments": "VeteranCommit",
"title": "Software Engineer",
"workHours": "40 hours per week"
}
</script>
Should the text entered as the content of the property description
("ABC Company Inc. seeks a full-time mid-level software engineer to develop in-house tools.") be set as the value of the meta
-description
tag in the head
section of the HTML page as shown below:
<meta name="description" content="ABC Company Inc. seeks a full-time mid-level software engineer to develop in-house tools.">
In the same way, what about setting the content of the Schema.org property title
to the title
element (in the head
section) of the HTML page shown as below:
<title>Software Engineer</title>
html5 schema.org json-ld structured-data
add a comment |
Should the text entered as the description
(a Schema.org property) be set as the meta
-description
of the HTML page?
Consider the following content:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "JobPosting",
"baseSalary": "100000",
"jobBenefits": "Medical, Life, Dental",
"datePosted": "2011-10-31",
"description": "Description: ABC Company Inc. seeks a full-time mid-level software engineer to develop in-house tools.",
"educationRequirements": "Bachelor's Degree in Computer Science, Information Systems or related fields of study.",
"employmentType": "Full-time",
"experienceRequirements": "Minumum 3 years experience as a software engineer",
"incentiveCompensation": "Performance-based annual bonus plan, project-completion bonuses",
"industry": "Computer Software",
"jobLocation": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"addressLocality": "Kirkland",
"addressRegion": "WA"
}
},
"occupationalCategory": "15-1132.00 Software Developers, Application",
"qualifications": "Ability to work in a team environment with members of varying skill levels. Highly motivated. Learns quickly.",
"responsibilities": "Design and write specifications for tools for in-house customers Build tools according to specifications",
"salaryCurrency": "USD",
"skills": "Web application development using Java/J2EE Web application development using Python or familiarity with dynamic programming languages",
"specialCommitments": "VeteranCommit",
"title": "Software Engineer",
"workHours": "40 hours per week"
}
</script>
Should the text entered as the content of the property description
("ABC Company Inc. seeks a full-time mid-level software engineer to develop in-house tools.") be set as the value of the meta
-description
tag in the head
section of the HTML page as shown below:
<meta name="description" content="ABC Company Inc. seeks a full-time mid-level software engineer to develop in-house tools.">
In the same way, what about setting the content of the Schema.org property title
to the title
element (in the head
section) of the HTML page shown as below:
<title>Software Engineer</title>
html5 schema.org json-ld structured-data
Although this is published in such a manner found in the thread: webmasters.stackexchange.com/questions/96026/… , I need specific answer for the given sample code that is going to be published as the code of an online job portal.
– Webengineer
Nov 14 '18 at 8:32
It’s off-topic here to ask what is better for SEO, so I would suggest you edit your question and remove the whole second part.
– unor
Nov 14 '18 at 12:45
Or, better still, delete this and ask on Webmasters.SE (SEO is off-topic here)
– Machavity
Nov 15 '18 at 19:06
add a comment |
Should the text entered as the description
(a Schema.org property) be set as the meta
-description
of the HTML page?
Consider the following content:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "JobPosting",
"baseSalary": "100000",
"jobBenefits": "Medical, Life, Dental",
"datePosted": "2011-10-31",
"description": "Description: ABC Company Inc. seeks a full-time mid-level software engineer to develop in-house tools.",
"educationRequirements": "Bachelor's Degree in Computer Science, Information Systems or related fields of study.",
"employmentType": "Full-time",
"experienceRequirements": "Minumum 3 years experience as a software engineer",
"incentiveCompensation": "Performance-based annual bonus plan, project-completion bonuses",
"industry": "Computer Software",
"jobLocation": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"addressLocality": "Kirkland",
"addressRegion": "WA"
}
},
"occupationalCategory": "15-1132.00 Software Developers, Application",
"qualifications": "Ability to work in a team environment with members of varying skill levels. Highly motivated. Learns quickly.",
"responsibilities": "Design and write specifications for tools for in-house customers Build tools according to specifications",
"salaryCurrency": "USD",
"skills": "Web application development using Java/J2EE Web application development using Python or familiarity with dynamic programming languages",
"specialCommitments": "VeteranCommit",
"title": "Software Engineer",
"workHours": "40 hours per week"
}
</script>
Should the text entered as the content of the property description
("ABC Company Inc. seeks a full-time mid-level software engineer to develop in-house tools.") be set as the value of the meta
-description
tag in the head
section of the HTML page as shown below:
<meta name="description" content="ABC Company Inc. seeks a full-time mid-level software engineer to develop in-house tools.">
In the same way, what about setting the content of the Schema.org property title
to the title
element (in the head
section) of the HTML page shown as below:
<title>Software Engineer</title>
html5 schema.org json-ld structured-data
Should the text entered as the description
(a Schema.org property) be set as the meta
-description
of the HTML page?
Consider the following content:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "JobPosting",
"baseSalary": "100000",
"jobBenefits": "Medical, Life, Dental",
"datePosted": "2011-10-31",
"description": "Description: ABC Company Inc. seeks a full-time mid-level software engineer to develop in-house tools.",
"educationRequirements": "Bachelor's Degree in Computer Science, Information Systems or related fields of study.",
"employmentType": "Full-time",
"experienceRequirements": "Minumum 3 years experience as a software engineer",
"incentiveCompensation": "Performance-based annual bonus plan, project-completion bonuses",
"industry": "Computer Software",
"jobLocation": {
"@type": "Place",
"address": {
"@type": "PostalAddress",
"addressLocality": "Kirkland",
"addressRegion": "WA"
}
},
"occupationalCategory": "15-1132.00 Software Developers, Application",
"qualifications": "Ability to work in a team environment with members of varying skill levels. Highly motivated. Learns quickly.",
"responsibilities": "Design and write specifications for tools for in-house customers Build tools according to specifications",
"salaryCurrency": "USD",
"skills": "Web application development using Java/J2EE Web application development using Python or familiarity with dynamic programming languages",
"specialCommitments": "VeteranCommit",
"title": "Software Engineer",
"workHours": "40 hours per week"
}
</script>
Should the text entered as the content of the property description
("ABC Company Inc. seeks a full-time mid-level software engineer to develop in-house tools.") be set as the value of the meta
-description
tag in the head
section of the HTML page as shown below:
<meta name="description" content="ABC Company Inc. seeks a full-time mid-level software engineer to develop in-house tools.">
In the same way, what about setting the content of the Schema.org property title
to the title
element (in the head
section) of the HTML page shown as below:
<title>Software Engineer</title>
html5 schema.org json-ld structured-data
html5 schema.org json-ld structured-data
edited Nov 16 '18 at 20:33
Machavity
24.4k135679
24.4k135679
asked Nov 14 '18 at 8:20
WebengineerWebengineer
44
44
Although this is published in such a manner found in the thread: webmasters.stackexchange.com/questions/96026/… , I need specific answer for the given sample code that is going to be published as the code of an online job portal.
– Webengineer
Nov 14 '18 at 8:32
It’s off-topic here to ask what is better for SEO, so I would suggest you edit your question and remove the whole second part.
– unor
Nov 14 '18 at 12:45
Or, better still, delete this and ask on Webmasters.SE (SEO is off-topic here)
– Machavity
Nov 15 '18 at 19:06
add a comment |
Although this is published in such a manner found in the thread: webmasters.stackexchange.com/questions/96026/… , I need specific answer for the given sample code that is going to be published as the code of an online job portal.
– Webengineer
Nov 14 '18 at 8:32
It’s off-topic here to ask what is better for SEO, so I would suggest you edit your question and remove the whole second part.
– unor
Nov 14 '18 at 12:45
Or, better still, delete this and ask on Webmasters.SE (SEO is off-topic here)
– Machavity
Nov 15 '18 at 19:06
Although this is published in such a manner found in the thread: webmasters.stackexchange.com/questions/96026/… , I need specific answer for the given sample code that is going to be published as the code of an online job portal.
– Webengineer
Nov 14 '18 at 8:32
Although this is published in such a manner found in the thread: webmasters.stackexchange.com/questions/96026/… , I need specific answer for the given sample code that is going to be published as the code of an online job portal.
– Webengineer
Nov 14 '18 at 8:32
It’s off-topic here to ask what is better for SEO, so I would suggest you edit your question and remove the whole second part.
– unor
Nov 14 '18 at 12:45
It’s off-topic here to ask what is better for SEO, so I would suggest you edit your question and remove the whole second part.
– unor
Nov 14 '18 at 12:45
Or, better still, delete this and ask on Webmasters.SE (SEO is off-topic here)
– Machavity
Nov 15 '18 at 19:06
Or, better still, delete this and ask on Webmasters.SE (SEO is off-topic here)
– Machavity
Nov 15 '18 at 19:06
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53295723%2fhtml-title-meta-description-vs-schema-org-title-and-description%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53295723%2fhtml-title-meta-description-vs-schema-org-title-and-description%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Although this is published in such a manner found in the thread: webmasters.stackexchange.com/questions/96026/… , I need specific answer for the given sample code that is going to be published as the code of an online job portal.
– Webengineer
Nov 14 '18 at 8:32
It’s off-topic here to ask what is better for SEO, so I would suggest you edit your question and remove the whole second part.
– unor
Nov 14 '18 at 12:45
Or, better still, delete this and ask on Webmasters.SE (SEO is off-topic here)
– Machavity
Nov 15 '18 at 19:06