Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "https://github.com/oracle/graal/blob/master/docs/reference-manual/native-image/assets/config-condition-schema-v1.0.0.json",
"$id": "https://raw.githubusercontent.com/oracle/graal/master/docs/reference-manual/native-image/assets/config-condition-schema-v1.0.0.json",
"title": "JSON schema for the conditions used in GraalVM Native Image configuration files",
"properties": {
"typeReachable": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "https://github.com/oracle/graal/blob/master/docs/reference-manual/native-image/assets/config-type-schema-v1.0.0.json",
"type": "string",
"$id": "https://raw.githubusercontent.com/oracle/graal/master/docs/reference-manual/native-image/assets/config-type-schema-v1.0.0.json",
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"proxy": {
"type": "array",
"default": [],
"items": {
"type": "string",
"title": "Name of the interfaces defining the proxy class that should be registered for reflection"
},
"title": "List of interfaces defining the proxy class that should be registered for reflection"
},
"required": "proxy"
},
"additionalProperties": false
}
],
"title": "JSON schema for the type descriptors GraalVM Native Image configuration files use"
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "https://github.com/oracle/graal/blob/master/docs/reference-manual/native-image/assets/jni-config-schema-v1.1.0.json",
"$id": "https://raw.githubusercontent.com/oracle/graal/master/docs/reference-manual/native-image/assets/jni-config-schema-v1.1.0.json",
"default": [],
"items": {
"properties": {
Expand Down Expand Up @@ -34,8 +34,17 @@
"type": "array"
}
},
"required": [
"name"
"oneOf": [
{
"required": [
"name"
]
},
{
"required": [
"type"
]
}
],
"additionalProperties": false,
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "https://github.com/oracle/graal/blob/master/docs/reference-manual/native-image/assets/reflect-config-schema-v1.1.0.json",
"$id": "https://raw.githubusercontent.com/oracle/graal/master/docs/reference-manual/native-image/assets/reflect-config-schema-v1.1.0.json",
"default": [],
"items": {
"properties": {
Expand Down Expand Up @@ -34,8 +34,17 @@
"type": "array"
}
},
"required": [
"name"
"oneOf": [
{
"required": [
"name"
]
},
{
"required": [
"type"
]
}
],
"additionalProperties": false,
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "https://github.com/oracle/graal/blob/master/docs/reference-manual/native-image/assets/serialization-config-schema-v1.1.0.json",
"$id": "https://raw.githubusercontent.com/oracle/graal/master/docs/reference-manual/native-image/assets/serialization-config-schema-v1.1.0.json",
"default": {
"types": [],
"lambdaCapturingTypes": [],
"proxies": []
"lambdaCapturingTypes": []
},
"properties": {
"types": {
Expand Down Expand Up @@ -64,6 +63,7 @@
"type": "array"
},
"proxies": {
"deprecated": true,
"default": [],
"items": {
"properties": {
Expand Down Expand Up @@ -102,8 +102,7 @@
},
"required": [
"types",
"lambdaCapturingTypes",
"proxies"
"lambdaCapturingTypes"
],
"additionalProperties": false,
"type": "object",
Expand Down