Spring Security · JSON-LD Context

Spring Security Context

JSON-LD context defining the semantic vocabulary for Spring Security from Spring Security.

5 Classes 23 Properties 4 Namespaces
View Context View on GitHub

Namespaces

schema: https://schema.org/
sec: https://w3id.org/security#
oauth: https://www.iana.org/assignments/oauth-parameters/vocab/
springsec: https://spring.io/projects/spring-security/vocab/

Classes

name description url Person email

Properties

Property Type Container
OAuthToken reference
AccessToken reference
RefreshToken reference
AuthorizationCode reference
OidcToken reference
access_token
token_type
expires_in
refresh_token
scope
id_token
sub
iss
aud
exp
iat
jti
client_id
redirect_uri
grant_type
response_type
code_challenge
code_verifier

JSON-LD Document

Raw ↑
{
  "@context": {
    "@version": 1.1,
    "schema": "https://schema.org/",
    "sec": "https://w3id.org/security#",
    "oauth": "https://www.iana.org/assignments/oauth-parameters/vocab/",
    "springsec": "https://spring.io/projects/spring-security/vocab/",

    "name": "schema:name",
    "description": "schema:description",
    "url": "schema:url",

    "Person": "schema:Person",
    "email": "schema:email",

    "OAuthToken": {
      "@id": "oauth:Token",
      "@type": "@id"
    },
    "AccessToken": {
      "@id": "oauth:AccessToken",
      "@type": "@id"
    },
    "RefreshToken": {
      "@id": "oauth:RefreshToken",
      "@type": "@id"
    },
    "AuthorizationCode": {
      "@id": "oauth:AuthorizationCode",
      "@type": "@id"
    },
    "OidcToken": {
      "@id": "springsec:OidcToken",
      "@type": "@id"
    },

    "access_token": { "@id": "oauth:access_token" },
    "token_type": { "@id": "oauth:token_type" },
    "expires_in": { "@id": "oauth:expires_in" },
    "refresh_token": { "@id": "oauth:refresh_token" },
    "scope": { "@id": "oauth:scope" },
    "id_token": { "@id": "springsec:id_token" },

    "sub": { "@id": "springsec:subject" },
    "iss": { "@id": "springsec:issuer" },
    "aud": { "@id": "springsec:audience" },
    "exp": { "@id": "springsec:expirationTime" },
    "iat": { "@id": "springsec:issuedAt" },
    "jti": { "@id": "springsec:jwtId" },

    "client_id": { "@id": "oauth:client_id" },
    "redirect_uri": { "@id": "oauth:redirect_uri" },
    "grant_type": { "@id": "oauth:grant_type" },
    "response_type": { "@id": "oauth:response_type" },
    "code_challenge": { "@id": "oauth:code_challenge" },
    "code_verifier": { "@id": "oauth:code_verifier" }
  }
}