975 questions
2
votes
2
answers
129
views
How to write rdf4j Model to a string while preserving the original structure?
I have a plain java application that consumes a jsonld structured file, converts it to a Model class from rdf4j framework and then writes it as a string. The demo code is as so:
public static void ...
1
vote
1
answer
105
views
Using JSON-LD with multi offers that each have multi addons
When using google's Rich Results Test cant get past these errors:
I am getting Parsing error: Missing '}' or object member name error with the code here.
if I add " "offers" : {"
...
2
votes
1
answer
144
views
What's the proper JSON-LD Syntax for an Array of Objects?
The app I'm developing has an API to fetch a single object that I describe in JSON-LD like so:
{
"@context": {
"@vocab": "https://schema.org/",
"head":...
0
votes
1
answer
72
views
JSON-LD value objects with native JSON types in @value
I am trying to represent a typed value (numeric in this case, but it is the same for boolean) in JSON-LD in such a way that would allow my JavaScript code to work with it easily. If I declare the ...
0
votes
0
answers
66
views
Google’s Rich Results Test
I have a blog on Blogger. (https://www.newmyroyals.com). When I test the homepage using Google’s Rich Results Test tool, it shows a 'BlogPosting' structured data result. However, when I test any ...
0
votes
1
answer
64
views
rdflib removes duplicate values for a jsonld property which is an array of values
I have a jsonld representation of triples :
{"@id": "some-id",
"@type": "Row",
"attendance": 74439,
"...
1
vote
1
answer
233
views
Issue with Schema.org snippet in Google Search Console: Either 'offers', 'review' or 'aggregateRating' should be specified
I have an issue in Google Search Console that says that my schema is not valid for rich snippets cause of the upcoming issue (but schema is valid across validators):
Either 'offers', 'review' or '...
1
vote
2
answers
127
views
Why there is no add to calendar option pop up when I added json-ld markup for reservation
I am testing schema.org Json-ld markup for email using self mailing as mentioned, This is the sample schema I'm using along with html content sent in mail. I'm sending mail using gmail smtp, and ...
2
votes
0
answers
222
views
Where to Add JSON-LD Schema Markup Code in Shopify Theme?
{
"@context": "https://schema.org",
"@type": "Store",
"name": "Mosami",
"url": "https://mosami.in",
"...
-1
votes
1
answer
371
views
RatingCount and ReviewCount "should be the same" advice wrong?
I am working on a web page whose visibility for Google is very important to the client. I have included a JSON-LD section on the page that contains a number of reviews and a number of ratings in an ...
1
vote
1
answer
503
views
Rich Results Test URL crawled successfully but no Items detected
I pasted a URL to the Rich Results test, and it was successfully crawled but returns No Items Detected.
If I copied the html content and pasted that in it shows the JobPosting correctly.
Example web ...
1
vote
0
answers
75
views
Invalid integer in property "price" (in "offers")
I've created structured data for Car (car rental website) and Google Search Console is throwing this error:
Invalid integer in property "price" (in "offers")
for this piece of ...
0
votes
1
answer
61
views
Designing and Registering a Command in FIWARE NGSI-LD for Data Download from a URL
I am working with FIWARE, specifically with NGSI-LD. My objective is to create an actuator to which I can send a command to download information from a URL.
To achieve this, I want to design the ...
0
votes
1
answer
84
views
Error creating an Actuator device in an IoT Agent (FIWARE | NGSI-LD)
As mentioned in the title, I am working with FIWARE, specifically with NGSI-LD. To do this, I have deployed a series of containers using Docker Compose: ld-context (this is the container to provide ...
0
votes
1
answer
48
views
How can I remove parent component's script tag in child component layout.tsx?
I'm using app router from next.js.
I'd like to add jsonLd datas for both pages, "/blog" and "/blog/[searchKeyword]".
but I met some problems about this process.
blog > layout....