From a09e3f74a202aa77a7a9d8de100c451ead4f3a8e Mon Sep 17 00:00:00 2001
From: Surajiitmjnu <25f2005650@ds.study.iitm.ac.in>
Date: Wed, 11 Mar 2026 22:49:10 +0530
Subject: [PATCH 1/4] Add files via upload
---
index.html | 14 ++++++++++++++
1 file changed, 14 insertions(+)
create mode 100644 index.html
diff --git a/index.html b/index.html
new file mode 100644
index 000000000..aa180d2e9
--- /dev/null
+++ b/index.html
@@ -0,0 +1,14 @@
+
+
+
+
+
+ FOSSASIA
+
+
+
+
+
+
+
+
From ce0f330dee7b5bf14c569e3fba86a87a3deb4040 Mon Sep 17 00:00:00 2001
From: Surajiitmjnu <25f2005650@ds.study.iitm.ac.in>
Date: Wed, 11 Mar 2026 22:49:28 +0530
Subject: [PATCH 2/4] Add files via upload
---
settings.json | 7 +++++++
1 file changed, 7 insertions(+)
create mode 100644 settings.json
diff --git a/settings.json b/settings.json
new file mode 100644
index 000000000..e2798e426
--- /dev/null
+++ b/settings.json
@@ -0,0 +1,7 @@
+{
+ "editor.codeActionsOnSave": {
+ "source.fixAll": "explicit",
+ "source.organizeImports": "explicit",
+ "source.sortMembers": "explicit"
+ }
+}
From c289d0b2c386b0966e3f968c699d0db9415ff364 Mon Sep 17 00:00:00 2001
From: Surajiitmjnu <25f2005650@ds.study.iitm.ac.in>
Date: Wed, 18 Mar 2026 11:59:53 +0530
Subject: [PATCH 3/4] Fix #2341: modify interfaces.md file
---
pages/implementers/interfaces.md | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/pages/implementers/interfaces.md b/pages/implementers/interfaces.md
index 3b7dccb57..b0a01b2ae 100644
--- a/pages/implementers/interfaces.md
+++ b/pages/implementers/interfaces.md
@@ -27,22 +27,22 @@ Contributions and corrections from implementers are particularly welcome, as are
For purposes of making some sections of this page more precise, we assume the existence of a set of *abstract types* all of which may be referenced below, and which will have specific concrete types within a given programming language or implementation.
In addition to placeholder types like `String`, `Number`, `Boolean`, `Mapping`, `Callable` and the like, the JSON Schema-related types include:
-#### `Schema`
+#### Schema
The type of JSON Schemas, which may also differ across dialects of JSON Schema.
For common or modern versions of JSON Schema this type must essentially be able to represent both arbitrary JSON objects as well as booleans.
-#### `Instance`
+#### Instance
The type of JSON instances.
This type should essentially be `Any` or a type capable of representing all JSON values, given JSON Schema's applicability to any representable JSON.
-#### `Dialect`
+#### Dialect
The type of JSON dialects or dialect identifiers.
This type may simply be `String` if the dialect is represented within the implementation by its URI or by some short name.
-#### `EvaluationOptions`
+#### EvaluationOptions
The type of "fully ready" schemas and instances *along* with any additional implementation-specific customizable behavior.
At minimum, this type is either `Schema → Instance` or `Schema × Instance` (depending on whether the implementation takes both schema and instance together or compiles schemas and then produces a separate function taking the instance to validate).
@@ -53,7 +53,7 @@ It is highly likely to be richer in at least some of the following ways:
* Similarly, if there is a specific API for [format assertion enablement](#format-assertion-enablement), some representation of the `format` keyword's behavior is present in the context
* If the implementation supports the [creation or customization of dialects](#dialect-creation), and especially if schemas can contain subschemas across different dialects, then the context will contain some representation of dialects, e.g. `Dialect → Schema → ...`
-#### `Result`
+#### Result
The type of JSON Schema validation results, i.e. an object which encapsulates the validity of a given `Instance` under a `Schema`.
This type may simply be `Boolean` in some implementations or languages.
@@ -62,7 +62,7 @@ This type may simply be `Boolean` in some implementations or languages.
> The type of JSON Schema validation results that *include* JSON Schema annotations collected during validation.
-#### `URI`
+#### URI
The type of RFC 3986 compliant URIs.
This type should not generally be the same as `String`, as URIs have multiple possible string representations and require normalization to
From 9e723a24a86e8aa65a570fa9fba52662ca27d505 Mon Sep 17 00:00:00 2001
From: Surajiitmjnu <25f2005650@ds.study.iitm.ac.in>
Date: Wed, 18 Mar 2026 12:23:57 +0530
Subject: [PATCH 4/4] remove by default create file by me
---
index.html | 14 --------------
settings.json | 7 -------
2 files changed, 21 deletions(-)
delete mode 100644 index.html
delete mode 100644 settings.json
diff --git a/index.html b/index.html
deleted file mode 100644
index aa180d2e9..000000000
--- a/index.html
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
- FOSSASIA
-
-
-
-
-
-
-
-
diff --git a/settings.json b/settings.json
deleted file mode 100644
index e2798e426..000000000
--- a/settings.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "editor.codeActionsOnSave": {
- "source.fixAll": "explicit",
- "source.organizeImports": "explicit",
- "source.sortMembers": "explicit"
- }
-}