Skip to content
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

257 implementation of json ld standard #361

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

aasimdag
Copy link
Contributor

here is the example jsonld response for posts/{post_id} endpoint:

{
    "identifier": "3",
    "text": "Yoga routines to improve your flexibility.",
    "datePublished": "2024-12-15T15:31:47.304607",
    "image": "",
    "keywords": [
        "arms"
    ],
    "@context": "https://schema.org",
    "@type": "SocialMediaPosting",
    "author": {
        "@type": "Person",
        "name": "oguzasim",
        "identifier": "1"
    },
    "interactionStatistic": [
        {
            "@type": "InteractionCounter",
            "userInteractionCount": 0,
            "interactionType": "https://schema.org/LikeAction"
        },
        {
            "@type": "InteractionCounter",
            "userInteractionCount": 1,
            "interactionType": "https://schema.org/BookmarkAction"
        }
    ],
    "associatedProgram": null
}

the only affected endpoint is the new endpoint: GET api/posts/{post_id}

@aasimdag aasimdag added priority: high This issue should be addressed with urgency back-end type: new feature introduce new feature labels Dec 16, 2024
@aasimdag aasimdag self-assigned this Dec 16, 2024
@aasimdag aasimdag linked an issue Dec 16, 2024 that may be closed by this pull request
@aasimdag aasimdag requested review from m1u1s1, oguzhekim and sametaln and removed request for m1u1s1 December 16, 2024 16:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
back-end priority: high This issue should be addressed with urgency type: new feature introduce new feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Implementation of JSON-LD standard
1 participant