Canonical URL

CediesGrantCertificate Credential

The credential issued by the Luxembourg Ministry of Education that students can use to obtain a CEDIES loan from an accredited bank.

Canonical URL
Property Description
fileNumber
The unique number identifying the current CEDIES financial aid request.
identificationNumber
The unique number identifying all CEDIES financial aid requests.
issuedBy
The organization issuing the verifiable credential.
loanRequestDeadline
The deadline for requesting the loan portion of this grant with a state accredited bank.
recipient
The person receiving the CEDIES financial aid.
totalGrantAmount

The sum of the scholarship amounts granted to the recipient.

The scholarship part of the CEDIES financial aid is composed of a base scholarship, a tuition fee supplement, a mobility scholarship, a scholarship based on social criteria and a family scholarship.

totalLoanAmount

The sum of the loan amounts granted to the recipient.

The loan part of the CEDIES financial aid is the sum of a base loan and the additions for tuition fees, mobility, social criteria and family scholarship.

The property is optional.
Notes

The totalLoanAmount and loanRequestDeadline properties are optional as the recipient can choose to apply only for the scholarship part of the CEDIES financial aid.

Example

The following JSON object is an example of how data can be expressed in the credentialSubject section of a CediesGrantCertificate verifiable credential.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "fileNumber": 123456,
  "identificationNumber": 2021051243263,
  "issuedBy": {
    "logo": "https://example.com/logo.png",
    "name": "Issuer A"
  },
  "loanRequestDeadline": "2021-12-94",
  "recipient": {
    "address": "21 rue Glesener, L-1631 Luxembourg, Luxembourg",
    "familyName": "Durand",
    "givenName": "Paul"
  },
  "totalGrantAmount": {
    "value": 1245,
    "currency": "EUR"
  },
  "totalLoanAmount": {
    "value": 1632,
    "currency": "EUR"
  }
}
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
  "credentialPreview": {
    "@context": [
      "https://www.w3.org/2018/credentials/v1",
      {
        "name": "https://schema.org/name",
        "description": "https://schema.org/description",
        "CediesGrantCertificate": {
          "@context": {
            "@protected": true,
            "@version": 1.1,
            "fileNumber": "https://vocabulary.trustmydata.compell.io/properties/fileNumber",
            "id": "@id",
            "identificationNumber": "https://vocabulary.trustmydata.compell.io/properties/identificationNumber",
            "issuedBy": {
              "@context": {
                "@protected": true,
                "@version": 1.1,
                "logo": {
                  "@id": "schema:logo",
                  "@type": "@id"
                },
                "name": "schema:name",
                "schema": "https://schema.org/"
              },
              "@id": "schema:issuedBy"
            },
            "loanRequestDeadline": "schema:endDate",
            "recipient": {
              "@context": {
                "@protected": true,
                "@version": 1.1,
                "address": "schema:address",
                "familyName": "schema:familyName",
                "givenName": "schema:givenName",
                "schema": "https://schema.org/",
                "type": "schema:Person"
              },
              "@id": "schema:recipient"
            },
            "schema": "https://schema.org/",
            "totalGrantAmount": {
              "@context": {
                "@protected": true,
                "@version": 1.1,
                "currency": "schema:currency",
                "schema": "https://schema.org/",
                "type": "schema:MonetaryAmount",
                "value": "schema:value"
              },
              "@id": "https://vocabulary.trustmydata.compell.io/properties/totalGrantAmount"
            },
            "totalLoanAmount": {
              "@context": {
                "@protected": true,
                "@version": 1.1,
                "currency": "schema:currency",
                "schema": "https://schema.org/",
                "type": "schema:MonetaryAmount",
                "value": "schema:value"
              },
              "@id": "https://vocabulary.trustmydata.compell.io/properties/totalLoanAmount"
            },
            "type": "@type"
          },
          "@id": "https://vocabulary.trustmydata.compell.io/credentials/CediesGrantCertificate"
        }
      }
    ],
    "id": "urn:...",
    "type": [
      "VerifiableCredential",
      "CediesGrantCertificate"
    ],
    "credentialSubject": {
      "id": "did:...",
      "type": "CediesGrantCertificate",
      "fileNumber": 123456,
      "identificationNumber": 2021051243263,
      "issuedBy": {
        "logo": "https://example.com/logo.png",
        "name": "Issuer A"
      },
      "loanRequestDeadline": "2021-12-94",
      "recipient": {
        "address": "21 rue Glesener, L-1631 Luxembourg, Luxembourg",
        "familyName": "Durand",
        "givenName": "Paul"
      },
      "totalGrantAmount": {
        "value": 1245,
        "currency": "EUR"
      },
      "totalLoanAmount": {
        "value": 1632,
        "currency": "EUR"
      }
    },
    "issuer": "did:...",
    "issuanceDate": "2020-12-01T07:47:01Z",
    "credentialSchema": {
      "id": "...",
      "type": "JsonSchemaValidator2021"
    },
    "name": [
      {
        "@language": "en",
        "@value": "Cedies grant certificate"
      }
    ],
    "description": [
      {
        "@language": "en",
        "@value": "The credential issued by the Luxembourg Ministry of Education that students can use to obtain a CEDIES loan from an accredited bank."
      }
    ]
  },
  "expires": "2023-12-01T07:47:01Z",
  "type": "CredentialOffer"
}
Copyright © 2022 Compellio S.A. All rights reserved.
Last modified on Nov 26, 2022 14:32