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

Issues with atlasimporter (Ampersand 5) #1501

Open
hanjoosten opened this issue Sep 1, 2024 · 0 comments
Open

Issues with atlasimporter (Ampersand 5) #1501

hanjoosten opened this issue Sep 1, 2024 · 0 comments
Assignees

Comments

@hanjoosten
Copy link
Member

hanjoosten commented Sep 1, 2024

On porting the atlas importer to ampersand 5, I encounter the following issues with the expected .json structure. This is a list of required fixes at the side of the Atlas.

Rolerules (MAINTAINS statement in .adl)

In a rolerule statement, we need a list of names referring to a role and a list of names referring to a rule.
Not:

    "rolerules": [
        {
            "role": {
                "role": "User"
            },
            "rule": [
                "Rule1Ctx",
                "Rule1Ptn"
            ]
        }
    ],

But:

    "rolerules": [
        {
            "roles": [
                "User"
            ],
            "rules": [
                "Rule1Ctx",
                "Rule1Ptn"
            ]
        }
    ],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: New RAP5
Development

No branches or pull requests

2 participants