diff --git a/content/2020-12/validation/exclusiveMinimum.markdown b/content/2020-12/validation/exclusiveMinimum.markdown
index 0c0d4674..6b3b123e 100644
--- a/content/2020-12/validation/exclusiveMinimum.markdown
+++ b/content/2020-12/validation/exclusiveMinimum.markdown
@@ -18,3 +18,69 @@ related:
- vocabulary: validation
keyword: multipleOf
---
+
+The `exclusiveMinimum` keyword is used to set an exclusive lower limit on numeric instances. It specifies that the numeric value being validated must be strictly greater than (not equal to) the provided minimum value.
+
+* Applies only to number data types (integers and floats).
+* Validation succeeds if the number is strictly greater than the specified `exclusiveMinimum`.
+
+## Examples
+
+{{}}
+{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "type": "number",
+ "exclusiveMinimum": 5
+}
+{{}}
+
+{{}}
+3
+{{}}
+
+{{}}
+9.5
+{{}}
+
+{{}}
+5
+{{}}
+
+{{}}
+{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "type": [ "string", "number" ],
+ "exclusiveMinimum": 10
+}
+{{}}
+
+{{}}
+15
+{{}}
+
+{{}}
+false
+{{}}
+
+{{}}
+"Hello World!"
+{{}}
+
+{{}}
+{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "type": "number",
+ "exclusiveMinimum": 10,
+ "minimum": 5
+}
+{{}}
+
+{{}}
+15
+{{}}
+
+{{}}
+9.5
+{{}}
+
+* _**Note:** Here, the `exclusiveMinimum` takes precedence, even though `minimum` is 5. Only numbers greater than 10 are valid._
\ No newline at end of file