Skip to content

Api Gateway  >  Structures  >  Model

Model

Structure Class

Model dataclass

Represents the data structure of a method's request or response payload.

Attributes

content_type class-attribute instance-attribute
content_type: str | None = None

The content-type for the model.

description class-attribute instance-attribute
description: str | None = None

The description of the model.

id class-attribute instance-attribute
id: str | None = None

The identifier for the model resource.

name class-attribute instance-attribute
name: str | None = None

The name of the model. Must be an alphanumeric string.

schema class-attribute instance-attribute
schema: str | None = None

The schema for the model. For application/json models, this should be JSON schema draft 4 model. Do not include "*/" characters in the description of any properties because such "*/" characters may be interpreted as the closing marker for comments in some languages, such as Java or JavaScript, causing the installation of your API's SDK generated by API Gateway to fail.