action apicurio_get_resource_limits { label: "Get resource limits information" description: "This operation retrieves the list of limitations on used resources, that are applied on the current instance of Registry." provider: apicurio method: GET path: "/system/limits" encoding: json output: { type: "object" description: "List of limitations on used resources, that are applied on the current instance of Registry.\nKeys represent the resource type and are suffixed by the corresponding unit.\nValues are integers. Only non-negative values are allowed, with the exception of -1, which means that the limit is not applied." properties: { maxArtifactDescriptionLengthChars: { type: "integer" format: "int64" } maxArtifactLabelsCount: { type: "integer" format: "int64" } maxArtifactNameLengthChars: { type: "integer" format: "int64" } maxArtifactPropertiesCount: { type: "integer" format: "int64" } maxArtifactsCount: { type: "integer" format: "int64" } maxLabelSizeBytes: { type: "integer" format: "int64" } maxPropertyKeySizeBytes: { type: "integer" format: "int64" } maxPropertyValueSizeBytes: { type: "integer" format: "int64" } maxRequestsPerSecondCount: { type: "integer" format: "int64" } maxSchemaSizeBytes: { type: "integer" format: "int64" } maxTotalSchemasCount: { type: "integer" format: "int64" } maxVersionsPerArtifactCount: { type: "integer" format: "int64" } } } }