Last active
October 29, 2024 17:39
-
-
Save Alxandr/0801cbd7c3e2c29f54b8c89a27058001 to your computer and use it in GitHub Desktop.
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
Show hidden characters
[ | |
{ | |
"id": "order-licence-plate", | |
"action": "order", | |
"resource": { | |
// urn:altinn:resouce er arvet, så den skippes | |
"urn:svv:area": "license-plates" | |
}, | |
"name": { | |
"no": "Bestill skilt", | |
"en": "Order licence plate" | |
}, | |
"description": { | |
"no": "Bla bla bestille nytt bilskilt" | |
} | |
}, | |
{ | |
"id": "view-licence-plates", | |
"action": "read", | |
"resource": { | |
// urn:altinn:resouce er arvet, så den skippes | |
"urn:svv:area": "license-plates" | |
}, | |
"name": { | |
"no": "Se oversikt over bilskilt", | |
"en": "....." | |
}, | |
"description": { | |
"no": "Bla bla oversikt" | |
} | |
} | |
] |
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
[ | |
{ | |
"resource": { | |
// urn:altinn:resouce er arvet, så den skippes | |
"urn:svv:area": "license-plates" | |
}, | |
// not sure we need name and description here with a hierarchy | |
"name": { | |
"no": "Skilt", | |
"en": "Licence plate" | |
}, | |
"description": { | |
"no": "Bla bla skilt" | |
}, | |
"actions": [ | |
{ | |
"id": "order-licence-plate", | |
"action": "order", | |
"name": { | |
"no": "Bestill skilt", | |
"en": "Order licence plate" | |
}, | |
"description": { | |
"no": "Bla bla bestille nytt bilskilt" | |
} | |
}, | |
{ | |
"id": "view-licence-plates", | |
"action": "read", | |
"name": { | |
"no": "Se oversikt over bilskilt", | |
"en": "...." | |
}, | |
"description": { | |
"no": "Bla bla bestille nytt bilskilt" | |
} | |
} | |
] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment