addedInput schema / properties / filters
Added value: +{
+ "additionalProperties": false,
+ "description": "Issues only. Match severity, any listed object, and any listed code; original issue order is retained.",
+ "properties": {
+ "codes": {
+ "items": {
+ "maxLength": 80,
+ "type": "string"
+ },
+ "maxItems": 32,
+ "minItems": 1,
+ "type": "array"
+ },
+ "objectIds": {
+ "items": {
+ "maxLength": 64,
+ "type": "string"
+ },
+ "maxItems": 100,
+ "minItems": 1,
+ "type": "array"
+ },
+ "severity": {
+ "enum": [
+ "error",
+ "warning",
+ "info",
+ "unknown"
+ ],
+ "type": "string"
+ }
+ },
+ "type": "object"
+}
changedOutput schema / properties / continuation / anyOf
Previous value: -[
- {
- "additionalProperties": {},
- "properties": {
- "artifactId": {
- "description": "Artifact ID returned by a completed job or artifacts_list.",
- "type": "string"
- },
- "jobId": {
- "description": "Durable job ID returned when an asynchronous operation is queued.",
- "type": "string"
- },
- "offset": {
- "maximum": 9007199254740991,
- "minimum": -9007199254740991,
- "type": "integer"
- },
- "section": {
- "enum": [
- "summary",
- "issues",
- "objects",
- "printObjects",
- "operationResults",
- "operationEffects",
- "operationWarnings",
- "exportMaterials",
- "exportObjects",
- "report"
- ],
- "type": "string"
- }
- },
- "required": [
- "jobId",
- "section",
- "offset",
- "artifactId"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": {},
+ "properties": {
+ "artifactId": {
+ "description": "Artifact ID returned by a completed job or artifacts_list.",
+ "type": "string"
+ },
+ "filterId": {
+ "type": "string"
+ },
+ "filters": {
+ "additionalProperties": {},
+ "properties": {
+ "codes": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "objectIds": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "severity": {
+ "enum": [
+ "error",
+ "warning",
+ "info",
+ "unknown"
+ ],
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "jobId": {
+ "description": "Durable job ID returned when an asynchronous operation is queued.",
+ "type": "string"
+ },
+ "offset": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "section": {
+ "enum": [
+ "summary",
+ "issues",
+ "objects",
+ "printObjects",
+ "operationResults",
+ "operationEffects",
+ "operationWarnings",
+ "exportMaterials",
+ "exportObjects",
+ "report"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "jobId",
+ "section",
+ "offset",
+ "artifactId"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]