diff --git a/schema.d.ts b/schema.d.ts index bc1d03e..3c62a68 100644 --- a/schema.d.ts +++ b/schema.d.ts @@ -247,6 +247,21 @@ export interface Attribute { */ defaultValue?: string; + /** + * Possible values of the attribute, if any. + */ + possibleValues?: string[]; + + /** + * If Type is numeric and has a minimum constraint. + */ + min?: string; + + /** + * If Type is numeric and has a maximum constraint. + */ + max?: string; + /** * The name of the field this attribute is associated with, if any. */