Generatore JSON & JWT Config
Genera le configurazioni JSON di Authorization e Signature per il FSE.
Configurazione
Inserisci i dati per generare i JSON JWT
iss (calcolato):-test
aud (suggerito):https://fse-gateway.regione.lazio.it
locality:LAZ
JSON Authorization
Usa questo JSON per il token di Authorization (certificato firma)
{
"alg": "RS256",
"typ": "JWT",
"x5c": [
"<certificato_firma_base64>"
],
"iss": "-test",
"sub": "<nome_struttura>",
"aud": "https://fse-gateway.regione.lazio.it",
"iat": 0,
"exp": 3600,
"jti": "00000000-0000-0000-0000-000000000000",
"patient_consent": true,
"action_id": "CREATE",
"resource_hl7_type": "57833-6",
"locality": "LAZ",
"subject_organization": "<software_house>",
"subject_organization_id": "<partita_iva>"
}JSON Signature
Usa questo JSON per il token di Signature (certificato trasporto)
{
"alg": "RS256",
"typ": "JWT",
"x5c": [
"<certificato_trasporto_base64>"
],
"iss": "-test",
"sub": "<nome_struttura>",
"aud": "https://fse-gateway.regione.lazio.it",
"iat": 0,
"exp": 3600,
"jti": "00000000-0000-0000-0000-000000000000",
"attachment_hash": "<sha256_del_documento>",
"subject_organization": "<software_house>",
"subject_organization_id": "<partita_iva>"
}