System.XmlException: start tag unexpected character =Mock HTTP Call Out In Test to Return XMLJSONParser error - System.JSONException: Unexpected character ('r' (code 114))JSON Unexpected character ('P' (code 80))System.JSONException: Unexpected characterError parsing xml with special characterChargent AppFrontier - Unexpected character ('S' (code 83))System.JSONException: Unexpected character ('<' (code 60)): expected a valid valueSystem.XmlException: only whitespace content allowed before start tag and not System.JSONException: Unexpected character ('' (code 125))Unexpected character ('}' during JSON desearilizationSystem.XmlException: Failed to parse XML due to: only whitespace content allowed before start tag
What do the Banks children have against barley water?
Could Giant Ground Sloths have been a good pack animal for the ancient Mayans?
Denied boarding due to overcrowding, Sparpreis ticket. What are my rights?
Re-submission of rejected manuscript without informing co-authors
If a centaur druid Wild Shapes into a Giant Elk, do their Charge features stack?
How to manage monthly salary
What's the difference between repeating elections every few years and repeating a referendum after a few years?
What does 'script /dev/null' do?
Was there ever an axiom rendered a theorem?
How is it possible for user's password to be changed after storage was encrypted? (on OS X, Android)
Are cabin dividers used to "hide" the flex of the airplane?
Is "plugging out" electronic devices an American expression?
Prime joint compound before latex paint?
Does bootstrapped regression allow for inference?
Finding files for which a command fails
Need help identifying/translating a plaque in Tangier, Morocco
Why do UK politicians seemingly ignore opinion polls on Brexit?
"listening to me about as much as you're listening to this pole here"
Hosting Wordpress in a EC2 Load Balanced Instance
Can I find out the caloric content of bread by dehydrating it?
LWC and complex parameters
Is Fable (1996) connected in any way to the Fable franchise from Lionhead Studios?
Can a planet have a different gravitational pull depending on its location in orbit around its sun?
What happens when a metallic dragon and a chromatic dragon mate?
System.XmlException: start tag unexpected character =
Mock HTTP Call Out In Test to Return XMLJSONParser error - System.JSONException: Unexpected character ('r' (code 114))JSON Unexpected character ('P' (code 80))System.JSONException: Unexpected characterError parsing xml with special characterChargent AppFrontier - Unexpected character ('S' (code 83))System.JSONException: Unexpected character ('<' (code 60)): expected a valid valueSystem.XmlException: only whitespace content allowed before start tag and not System.JSONException: Unexpected character ('' (code 125))Unexpected character ('}' during JSON desearilizationSystem.XmlException: Failed to parse XML due to: only whitespace content allowed before start tag
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
This is the full error:
System.XmlException: start tag unexpected character = (position: END_TAG seen ...<source> Bicycling</source><media:contenturl=... @1:688)
So from my understanding, this is not valid XML. I was having an issue with the session body and had to make the following change:
<rss xmlns:media="http:..." and had to add <rsstxlmns:media="https:..."
Now, I am not sure how to go about this with the = sign.
@isTest
global class getRSSFeedMockCallout implements HttpCalloutMock
global HttpResponse respond(HttpRequest request)
String sessionBody = '<rsstxmlns:media="http://search.yahoo.com/mrss/"version="2.0">' +
'<channel>'+
'<item>'+
'<title>Draymond Green Is a SoulCycle Devotee - Bicycling</title>'+
'<link>https://www.bicycling.com/news/a27024393/draymond-green-soulcycle/</link>'+
'<pubDate>Wed, 03 Apr 2019 12:00:00 GMT</pubDate>'+
'<description><a href="https://www.bicycling.com/news/a27024393/draymond-green-soulcycle/"target="_blank">Draymond Green Is a SoulCycle Devotee</a> <font color="#6f6f6f">Bicycling</font><p>If you take SoulCycle classes in the Bay Area, and you notice one extremely tall guy in the room, you may be looking at Golden State Warriors star Draymond ...</p></description>'+
'<source>Bicycling</source>'+
'<media:contenturl="https://lh5.googleusercontent.com/proxy/QvLCgDJMIqLENGFBUt1CCoUPO1XB6gJkGFPV5FuM0QKfyaG8WdhuHGtfcVaTzNzPAYyHo-arnqUBkWkZ8s7-p7WBUbKlfJ4xr0hl8hltQWsBCG0yDDh13Ul5qKrZgLvjQitRecmu=-w150-h150-c"medium="image"width="150"height="150"/>'+
'</item>'+
'</channel>'+
'</rss>';
HttpResponse res = new HttpResponse();
res.setHeader('Content-Type', 'text/xml');
res.setBody( sessionBody );
res.setStatusCode(200);
return res;
apex xml httpcalloutmock xmlparsing
New contributor
add a comment |
This is the full error:
System.XmlException: start tag unexpected character = (position: END_TAG seen ...<source> Bicycling</source><media:contenturl=... @1:688)
So from my understanding, this is not valid XML. I was having an issue with the session body and had to make the following change:
<rss xmlns:media="http:..." and had to add <rsstxlmns:media="https:..."
Now, I am not sure how to go about this with the = sign.
@isTest
global class getRSSFeedMockCallout implements HttpCalloutMock
global HttpResponse respond(HttpRequest request)
String sessionBody = '<rsstxmlns:media="http://search.yahoo.com/mrss/"version="2.0">' +
'<channel>'+
'<item>'+
'<title>Draymond Green Is a SoulCycle Devotee - Bicycling</title>'+
'<link>https://www.bicycling.com/news/a27024393/draymond-green-soulcycle/</link>'+
'<pubDate>Wed, 03 Apr 2019 12:00:00 GMT</pubDate>'+
'<description><a href="https://www.bicycling.com/news/a27024393/draymond-green-soulcycle/"target="_blank">Draymond Green Is a SoulCycle Devotee</a> <font color="#6f6f6f">Bicycling</font><p>If you take SoulCycle classes in the Bay Area, and you notice one extremely tall guy in the room, you may be looking at Golden State Warriors star Draymond ...</p></description>'+
'<source>Bicycling</source>'+
'<media:contenturl="https://lh5.googleusercontent.com/proxy/QvLCgDJMIqLENGFBUt1CCoUPO1XB6gJkGFPV5FuM0QKfyaG8WdhuHGtfcVaTzNzPAYyHo-arnqUBkWkZ8s7-p7WBUbKlfJ4xr0hl8hltQWsBCG0yDDh13Ul5qKrZgLvjQitRecmu=-w150-h150-c"medium="image"width="150"height="150"/>'+
'</item>'+
'</channel>'+
'</rss>';
HttpResponse res = new HttpResponse();
res.setHeader('Content-Type', 'text/xml');
res.setBody( sessionBody );
res.setStatusCode(200);
return res;
apex xml httpcalloutmock xmlparsing
New contributor
add a comment |
This is the full error:
System.XmlException: start tag unexpected character = (position: END_TAG seen ...<source> Bicycling</source><media:contenturl=... @1:688)
So from my understanding, this is not valid XML. I was having an issue with the session body and had to make the following change:
<rss xmlns:media="http:..." and had to add <rsstxlmns:media="https:..."
Now, I am not sure how to go about this with the = sign.
@isTest
global class getRSSFeedMockCallout implements HttpCalloutMock
global HttpResponse respond(HttpRequest request)
String sessionBody = '<rsstxmlns:media="http://search.yahoo.com/mrss/"version="2.0">' +
'<channel>'+
'<item>'+
'<title>Draymond Green Is a SoulCycle Devotee - Bicycling</title>'+
'<link>https://www.bicycling.com/news/a27024393/draymond-green-soulcycle/</link>'+
'<pubDate>Wed, 03 Apr 2019 12:00:00 GMT</pubDate>'+
'<description><a href="https://www.bicycling.com/news/a27024393/draymond-green-soulcycle/"target="_blank">Draymond Green Is a SoulCycle Devotee</a> <font color="#6f6f6f">Bicycling</font><p>If you take SoulCycle classes in the Bay Area, and you notice one extremely tall guy in the room, you may be looking at Golden State Warriors star Draymond ...</p></description>'+
'<source>Bicycling</source>'+
'<media:contenturl="https://lh5.googleusercontent.com/proxy/QvLCgDJMIqLENGFBUt1CCoUPO1XB6gJkGFPV5FuM0QKfyaG8WdhuHGtfcVaTzNzPAYyHo-arnqUBkWkZ8s7-p7WBUbKlfJ4xr0hl8hltQWsBCG0yDDh13Ul5qKrZgLvjQitRecmu=-w150-h150-c"medium="image"width="150"height="150"/>'+
'</item>'+
'</channel>'+
'</rss>';
HttpResponse res = new HttpResponse();
res.setHeader('Content-Type', 'text/xml');
res.setBody( sessionBody );
res.setStatusCode(200);
return res;
apex xml httpcalloutmock xmlparsing
New contributor
This is the full error:
System.XmlException: start tag unexpected character = (position: END_TAG seen ...<source> Bicycling</source><media:contenturl=... @1:688)
So from my understanding, this is not valid XML. I was having an issue with the session body and had to make the following change:
<rss xmlns:media="http:..." and had to add <rsstxlmns:media="https:..."
Now, I am not sure how to go about this with the = sign.
@isTest
global class getRSSFeedMockCallout implements HttpCalloutMock
global HttpResponse respond(HttpRequest request)
String sessionBody = '<rsstxmlns:media="http://search.yahoo.com/mrss/"version="2.0">' +
'<channel>'+
'<item>'+
'<title>Draymond Green Is a SoulCycle Devotee - Bicycling</title>'+
'<link>https://www.bicycling.com/news/a27024393/draymond-green-soulcycle/</link>'+
'<pubDate>Wed, 03 Apr 2019 12:00:00 GMT</pubDate>'+
'<description><a href="https://www.bicycling.com/news/a27024393/draymond-green-soulcycle/"target="_blank">Draymond Green Is a SoulCycle Devotee</a> <font color="#6f6f6f">Bicycling</font><p>If you take SoulCycle classes in the Bay Area, and you notice one extremely tall guy in the room, you may be looking at Golden State Warriors star Draymond ...</p></description>'+
'<source>Bicycling</source>'+
'<media:contenturl="https://lh5.googleusercontent.com/proxy/QvLCgDJMIqLENGFBUt1CCoUPO1XB6gJkGFPV5FuM0QKfyaG8WdhuHGtfcVaTzNzPAYyHo-arnqUBkWkZ8s7-p7WBUbKlfJ4xr0hl8hltQWsBCG0yDDh13Ul5qKrZgLvjQitRecmu=-w150-h150-c"medium="image"width="150"height="150"/>'+
'</item>'+
'</channel>'+
'</rss>';
HttpResponse res = new HttpResponse();
res.setHeader('Content-Type', 'text/xml');
res.setBody( sessionBody );
res.setStatusCode(200);
return res;
apex xml httpcalloutmock xmlparsing
apex xml httpcalloutmock xmlparsing
New contributor
New contributor
edited 9 hours ago
Dave Humm
4,57951431
4,57951431
New contributor
asked 12 hours ago
Matthew MetrosMatthew Metros
111
111
New contributor
New contributor
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
There are few things wrong with the xml.
1) In Apex, the string starts and end with single quotes '
, thus you don't need to escape "
2) You cannot use &
in XML, it makes XML invalid, you have to escape it.
will become &nbsp;
3) There is no tag as media:contenturl
in rss specification ,the tag is media:content
and having url
as an attribute. Seems like you missed a space in that.
Thus fixing all the above problem and formating the code, the code would be something like
String input = '<rss xmlns:media="http://search.yahoo.com/mrss/" version="2.0">' +
'<channel>' +
'<item>' +
'<title>Draymond Green Is a SoulCycle Devotee - Bicycling</title>' +
'<link>https://www.bicycling.com/news/a27024393/draymond-green-soulcycle/</link>' +
'<pubDate>Wed, 03 Apr 2019 12:00:00 GMT</pubDate>' +
'<description>' +
'<a href="https://www.bicycling.com/news/a27024393/draymond-green-soulcycle/" target="_blank">Draymond Green Is a SoulCycle Devotee &nbsp;&nbsp; </a>' +
'<font color="#6f6f6f">Bicycling</font>' +
'<p>If you take SoulCycle classes in the Bay Area, and you notice one extremely tall guy in the room, you may be looking at Golden State Warriors star Draymond ...</p>' +
'</description>' +
'<source>Bicycling</source>' +
'<media:content url ="https://lh5.googleusercontent.com/proxy/QvLCgDJMIqLENGFBUt1CCoUPO1XB6gJkGFPV5FuM0QKfyaG8WdhuHGtfcVaTzNzPAYyHo-arnqUBkWkZ8s7-p7WBUbKlfJ4xr0hl8hltQWsBCG0yDDh13Ul5qKrZgLvjQitRecmu=-w150-h150-c" medium="image" width="150" height="150"/>' +
'</item>' +
'</channel>' +
'</rss>';
System.debug(input);
You are the man! Works perfectly now.
– Matthew Metros
11 hours ago
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "459"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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
);
);
Matthew Metros is a new contributor. Be nice, and check out our Code of Conduct.
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%2fsalesforce.stackexchange.com%2fquestions%2f256980%2fsystem-xmlexception-start-tag-unexpected-character%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
There are few things wrong with the xml.
1) In Apex, the string starts and end with single quotes '
, thus you don't need to escape "
2) You cannot use &
in XML, it makes XML invalid, you have to escape it.
will become &nbsp;
3) There is no tag as media:contenturl
in rss specification ,the tag is media:content
and having url
as an attribute. Seems like you missed a space in that.
Thus fixing all the above problem and formating the code, the code would be something like
String input = '<rss xmlns:media="http://search.yahoo.com/mrss/" version="2.0">' +
'<channel>' +
'<item>' +
'<title>Draymond Green Is a SoulCycle Devotee - Bicycling</title>' +
'<link>https://www.bicycling.com/news/a27024393/draymond-green-soulcycle/</link>' +
'<pubDate>Wed, 03 Apr 2019 12:00:00 GMT</pubDate>' +
'<description>' +
'<a href="https://www.bicycling.com/news/a27024393/draymond-green-soulcycle/" target="_blank">Draymond Green Is a SoulCycle Devotee &nbsp;&nbsp; </a>' +
'<font color="#6f6f6f">Bicycling</font>' +
'<p>If you take SoulCycle classes in the Bay Area, and you notice one extremely tall guy in the room, you may be looking at Golden State Warriors star Draymond ...</p>' +
'</description>' +
'<source>Bicycling</source>' +
'<media:content url ="https://lh5.googleusercontent.com/proxy/QvLCgDJMIqLENGFBUt1CCoUPO1XB6gJkGFPV5FuM0QKfyaG8WdhuHGtfcVaTzNzPAYyHo-arnqUBkWkZ8s7-p7WBUbKlfJ4xr0hl8hltQWsBCG0yDDh13Ul5qKrZgLvjQitRecmu=-w150-h150-c" medium="image" width="150" height="150"/>' +
'</item>' +
'</channel>' +
'</rss>';
System.debug(input);
You are the man! Works perfectly now.
– Matthew Metros
11 hours ago
add a comment |
There are few things wrong with the xml.
1) In Apex, the string starts and end with single quotes '
, thus you don't need to escape "
2) You cannot use &
in XML, it makes XML invalid, you have to escape it.
will become &nbsp;
3) There is no tag as media:contenturl
in rss specification ,the tag is media:content
and having url
as an attribute. Seems like you missed a space in that.
Thus fixing all the above problem and formating the code, the code would be something like
String input = '<rss xmlns:media="http://search.yahoo.com/mrss/" version="2.0">' +
'<channel>' +
'<item>' +
'<title>Draymond Green Is a SoulCycle Devotee - Bicycling</title>' +
'<link>https://www.bicycling.com/news/a27024393/draymond-green-soulcycle/</link>' +
'<pubDate>Wed, 03 Apr 2019 12:00:00 GMT</pubDate>' +
'<description>' +
'<a href="https://www.bicycling.com/news/a27024393/draymond-green-soulcycle/" target="_blank">Draymond Green Is a SoulCycle Devotee &nbsp;&nbsp; </a>' +
'<font color="#6f6f6f">Bicycling</font>' +
'<p>If you take SoulCycle classes in the Bay Area, and you notice one extremely tall guy in the room, you may be looking at Golden State Warriors star Draymond ...</p>' +
'</description>' +
'<source>Bicycling</source>' +
'<media:content url ="https://lh5.googleusercontent.com/proxy/QvLCgDJMIqLENGFBUt1CCoUPO1XB6gJkGFPV5FuM0QKfyaG8WdhuHGtfcVaTzNzPAYyHo-arnqUBkWkZ8s7-p7WBUbKlfJ4xr0hl8hltQWsBCG0yDDh13Ul5qKrZgLvjQitRecmu=-w150-h150-c" medium="image" width="150" height="150"/>' +
'</item>' +
'</channel>' +
'</rss>';
System.debug(input);
You are the man! Works perfectly now.
– Matthew Metros
11 hours ago
add a comment |
There are few things wrong with the xml.
1) In Apex, the string starts and end with single quotes '
, thus you don't need to escape "
2) You cannot use &
in XML, it makes XML invalid, you have to escape it.
will become &nbsp;
3) There is no tag as media:contenturl
in rss specification ,the tag is media:content
and having url
as an attribute. Seems like you missed a space in that.
Thus fixing all the above problem and formating the code, the code would be something like
String input = '<rss xmlns:media="http://search.yahoo.com/mrss/" version="2.0">' +
'<channel>' +
'<item>' +
'<title>Draymond Green Is a SoulCycle Devotee - Bicycling</title>' +
'<link>https://www.bicycling.com/news/a27024393/draymond-green-soulcycle/</link>' +
'<pubDate>Wed, 03 Apr 2019 12:00:00 GMT</pubDate>' +
'<description>' +
'<a href="https://www.bicycling.com/news/a27024393/draymond-green-soulcycle/" target="_blank">Draymond Green Is a SoulCycle Devotee &nbsp;&nbsp; </a>' +
'<font color="#6f6f6f">Bicycling</font>' +
'<p>If you take SoulCycle classes in the Bay Area, and you notice one extremely tall guy in the room, you may be looking at Golden State Warriors star Draymond ...</p>' +
'</description>' +
'<source>Bicycling</source>' +
'<media:content url ="https://lh5.googleusercontent.com/proxy/QvLCgDJMIqLENGFBUt1CCoUPO1XB6gJkGFPV5FuM0QKfyaG8WdhuHGtfcVaTzNzPAYyHo-arnqUBkWkZ8s7-p7WBUbKlfJ4xr0hl8hltQWsBCG0yDDh13Ul5qKrZgLvjQitRecmu=-w150-h150-c" medium="image" width="150" height="150"/>' +
'</item>' +
'</channel>' +
'</rss>';
System.debug(input);
There are few things wrong with the xml.
1) In Apex, the string starts and end with single quotes '
, thus you don't need to escape "
2) You cannot use &
in XML, it makes XML invalid, you have to escape it.
will become &nbsp;
3) There is no tag as media:contenturl
in rss specification ,the tag is media:content
and having url
as an attribute. Seems like you missed a space in that.
Thus fixing all the above problem and formating the code, the code would be something like
String input = '<rss xmlns:media="http://search.yahoo.com/mrss/" version="2.0">' +
'<channel>' +
'<item>' +
'<title>Draymond Green Is a SoulCycle Devotee - Bicycling</title>' +
'<link>https://www.bicycling.com/news/a27024393/draymond-green-soulcycle/</link>' +
'<pubDate>Wed, 03 Apr 2019 12:00:00 GMT</pubDate>' +
'<description>' +
'<a href="https://www.bicycling.com/news/a27024393/draymond-green-soulcycle/" target="_blank">Draymond Green Is a SoulCycle Devotee &nbsp;&nbsp; </a>' +
'<font color="#6f6f6f">Bicycling</font>' +
'<p>If you take SoulCycle classes in the Bay Area, and you notice one extremely tall guy in the room, you may be looking at Golden State Warriors star Draymond ...</p>' +
'</description>' +
'<source>Bicycling</source>' +
'<media:content url ="https://lh5.googleusercontent.com/proxy/QvLCgDJMIqLENGFBUt1CCoUPO1XB6gJkGFPV5FuM0QKfyaG8WdhuHGtfcVaTzNzPAYyHo-arnqUBkWkZ8s7-p7WBUbKlfJ4xr0hl8hltQWsBCG0yDDh13Ul5qKrZgLvjQitRecmu=-w150-h150-c" medium="image" width="150" height="150"/>' +
'</item>' +
'</channel>' +
'</rss>';
System.debug(input);
answered 11 hours ago
Pranay JaiswalPranay Jaiswal
18.6k53158
18.6k53158
You are the man! Works perfectly now.
– Matthew Metros
11 hours ago
add a comment |
You are the man! Works perfectly now.
– Matthew Metros
11 hours ago
You are the man! Works perfectly now.
– Matthew Metros
11 hours ago
You are the man! Works perfectly now.
– Matthew Metros
11 hours ago
add a comment |
Matthew Metros is a new contributor. Be nice, and check out our Code of Conduct.
Matthew Metros is a new contributor. Be nice, and check out our Code of Conduct.
Matthew Metros is a new contributor. Be nice, and check out our Code of Conduct.
Matthew Metros is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Salesforce Stack Exchange!
- 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%2fsalesforce.stackexchange.com%2fquestions%2f256980%2fsystem-xmlexception-start-tag-unexpected-character%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