From 3cdace9c208d2874d0b966c73687defc7ba40990 Mon Sep 17 00:00:00 2001 From: Zachary Belford Date: Mon, 6 Feb 2023 14:34:11 -0800 Subject: [PATCH] fix: examplePairingObject.name and params are required in the metaschema --- spec.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec.md b/spec.md index 221c950..3f07187 100644 --- a/spec.md +++ b/spec.md @@ -232,10 +232,10 @@ The Example Pairing object consists of a set of example params and result. The r Field Name | Type | Description ---|:---:|--- -name | `string` | Name for the example pairing. +name | `string` | **REQUIRED** Name for the example pairing. description | `string` | A verbose explanation of the example pairing. summary | `string` | Short description for the example pairing. -params | [[Example Object](#example-object) \| [Reference Object](#reference-object)] | Example parameters. +params | [[Example Object](#example-object) \| [Reference Object](#reference-object)] | **REQUIRED** Example parameters. result | [Example Object](#example-object) \| [Reference Object](#reference-object) | Example result. When undefined, the example pairing represents usage of the method as a notification. This object MAY be extended with [Specification Extensions](#specification-extensions).