A set of attributes that describe the API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApiAttributes", "title": "API Attributes", "description": "A set of attributes that describe the API", "type": "object", "example": { "env": [ "production" ], "domains": [ "web", "mobile" ] }, "default": {}, "additionalProperties": { "nullable": true, "description": "Set of attributes with unique keys. Each key can include lowercase letters, numbers, hyphens, and underscores.", "type": "array", "minItems": 1, "maxItems": 20, "items": { "type": "string", "minLength": 1, "maxLength": 512, "pattern": "^[^,<>]*$" } }, "nullable": false, "x-speakeasy-type-override": "any" }