-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Exploring how Patterns can be connected to Schemas #41606
Comments
Love that this was discussed! I'm a big fan for a few reasons:
|
I briefly touched upon this in a conversation with @dmsnell about his work with inline tokens. I can imagine a |
From what I understand, we're basically discussing adding schema information to "complex" blocks here. If that is the case, could we introduce a method to create a "template" for these blocks via JSON, so that when a user adds a "recipe", it will automatically add all the necessary components along with their schema? {
"name": "Recipe",
"schema": {
"@context": "https://schema.org",
"@type": "Recipe"
},
"blocks": [
{
"block": "core/heading",
"attributes": { "level": "1" },
"schema": {
"item": "name"
}
},
{
"block": "core/paragraph",
"schema": {
"item": "description"
}
},
{
"block": "core/image",
"attributes": {
"align": "center",
"sizeSlug": "large"
},
"schema": {
"item": "image"
}
},
{
"block": "core/paragraph",
"schema": {
"item": "cookTime"
}
},
{
"block": "core/list",
"attributes": {
"ordered": false
},
"schema": {
"item": "recipeIngredient"
}
},
{
"block": "core/group",
"schema": {
"item": "recipeInstructions"
}
}
]
} We can take a look at https://schema.org/Recipe and the JSON-LD example they have on that page, and try to create a structure for our blocks that will mirror that recipe. |
Microdata / RDFa schema is deprecated in all but name, and entities can't be cross-referenced between formats. Most schema output will also need to have access to the context of everything else on the page, otherwise it's going to do more harm than good. For example, a theoretical FAQ block must transform the It's also pretty worthless (and potentially harmful, depending on your philosophical stance) to simply declare a block as being/having a recipe, without specifically having and painting and validating all of the respective components and requirements. To be valuable, the schema output must 'know about' all of the content and data on the page, and that data might recursively alter other aspects, values and structures. In short, this is far more complex than simply painting data in/on blocks, which is why we've invested so much time exploring this space in Yoast SEO. |
@jonoalderson In block themes, blocks get rendered before the |
So... I spent (and spend) quite some time thinking about all this, and have laid out some of my "worries" about this in a post: https://yoast.com/why-schema-needs-to-be-a-graph/ |
Another question to answer is how this overlaps with The Block Protocol https://twitter.com/nonparibus/status/1540140385187536897?s=20&t=9SqBOFyGhMvLOun2wb4Z5A |
Thanks for the expanded thoughts @jdevalk! I think it's worth emphasizing that the portions that touch upon blocks and patterns are structural in that they don't aim to represent on their own a graph but assist in the creation of one. The interesting thing about patterns is that they can represent fragments by unlocking access to properties by narrowing down what blocks understand of their own role, but they themselves can be orchestrated at a higher level — page, template, site. A JSON-LD can be both an artefact to be generated and a recipe for construction, but as long as the source of content truth is not duplicated and remains in blocks, we need to establish the block mechanisms for storing and surfacing relevant semantic information about themselves in a way that doesn't imply a new block type (which kind of defeats the purpose for this). If it'd be better to avoid markup signals, that could be a schema object in the block attributes, guided by the pattern fragment, or something else entirely. The main point of this issue is two-fold: to look at patterns at a higher altitude for composing blocks together; and to unlock access to general purpose blocks for different sets and combinations of semantic data. It's very relevant to raise the concern that these fragments (and thus, what blocks get to see and expose) also needs to be contextually determined and can vary based on how or where the pattern is used. Communication between blocks (and thus, between pattern fragments) is a fairly established paradigm with Block Context and with access to block-tree reactivity. |
Update: with the wider support of |
Another update here: with the final architecture of pattern overrides established we've made pattern rendering dynamic. This means we have more of the pieces needed to make rendering driven by context outside of the pattern itself without changing the pattern source. An open question now is how to best connect schemas with the pattern overrides structure. Blocks expose themselves through "name" and attribute roles. Now the pattern should be able to read from a schema as it makes sense of the internal structure of its blocks. |
This idea was discussed in person at WCEU 2022 during contributor day: @youknowriad @aristath @gziolo @luisherranz
Connecting schemas (https://schema.org/docs/schemas.html) with blocks is something that has been surfaced a few times in the past as an interesting use case. There are several plugins doing that already by creating custom blocks. This proposal aims at introducing a slight twist to it, making schemas central to patterns, not specific blocks.
The idea would to add a very thin layer of support for
itemscope itemtype
to container blocks (namelyGroup
), so you can connect a wrapper to a specific schema (such ashttps://schema.org/Recipe
) with the cascading effect of unlocking specificitemprop
fields in all the children of the group. Notably, the child blocks don't need to be of any specific block type, so you can use regular paragraphs, headings, images, and so on.The
itemprop
would be accessed in the Advanced panel of the child blocks, ideally through a selector that exposes only the itemprops supported by the selected schema of the parent. During publication, we can develop a validation step where we'll warn users if anything might be missing to conform to the schema. This would allow the easy creation, publication, and sharing of patterns with a semantic layer, without needing to create custom block type to support them.An initial release doesn't need to do any fetching, validating, nor dynamic selectors, and can focus instead on supporting the underlying attributes once a schema is defined in a parent context. In the future, when going through the flow of creating a new pattern in the patterns directory, we can allow using a schema as a starting point. That would generate a set of basic blocks already connected to the relevant
itemprops
so the pattern builder would only need to arrange, remove, and customize the appearance before publishing a feature reach pattern.The text was updated successfully, but these errors were encountered: