Last active
October 4, 2023 14:56
-
-
Save BigBlueHat/b111cab41361e149701ff288d9186d4c to your computer and use it in GitHub Desktop.
Framing to a default language for the entire doc (maybe)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": "https://schema.org/", | |
"name": [{ | |
"@language": "en-US", | |
"@value": "Benjamin" | |
},{ | |
"@language": "he-IL", | |
"@value": "בִּנְיָמִין", | |
"@direction": "rtl" | |
} | |
]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": [ | |
"https://schema.org/", | |
{"@language": "en-US"} | |
], | |
"name": {"@value": {}} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": [ | |
"https://schema.org/", | |
{ | |
"@language": "en-US" | |
} | |
] | |
} |
Author
BigBlueHat
commented
Oct 3, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment