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

Free Form Message Schema Updates #1331

Closed
moshthepitt opened this issue Mar 27, 2018 · 0 comments
Closed

Free Form Message Schema Updates #1331

moshthepitt opened this issue Mar 27, 2018 · 0 comments
Assignees
Milestone

Comments

@moshthepitt
Copy link
Contributor

moshthepitt commented Mar 27, 2018

Change the free form message schema to include a metadata object with more information on the target as follows:

For user targets:

{
    "payload": {
        "message": "I love oov",
        "context": {
            "type": "user",
            "metadata": {
                "id": 1337,
                "name": "John Doe",    
            }
        },
        "author": {
            "username": "Bob",
            "real_name": "Bob Smith"
        }
    },
    "id": 3,
    "time": "2018-03-27T08:14:51.136675+00:00"
}

For project targets:

{
    "payload": {
        "message": "I love oov",
        "context": {
            "type": "project",
            "metadata": {
                "id": 1337,
                "name": "The Project Name", 
            }
        },
        "author": {
            "username": "Bob",
            "real_name": "Bob Smith"
        }
    },
    "id": 3,
    "time": "2018-03-27T08:14:51.136675+00:00"
}

For xform targets:

{
    "payload": {
        "message": "I love oov",
        "context": {
            "type": "xform",
            "metadata": {
                "id": 1337,
                "name": "The Form Title",
                "form_id": "The_ID_String"    
            }
        },
        "author": {
            "username": "Bob",
            "real_name": "Bob Smith"
        }
    },
    "id": 3,
    "time": "2018-03-27T08:14:51.136675+00:00"
}

Aha! Link: https://ona.aha.io/features/PROD-388

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant