changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "chain_valid": {
+ "type": "boolean"
+ },
+ "check_region": {
+ "type": "string"
+ },
+ "checked_at": {
+ "type": "string"
+ },
+ "days_remaining": {
+ "anyOf": [
+ {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "error": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "expires_at": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "hostname_checked": {
+ "type": "string"
+ },
+ "hostname_match": {
+ "type": "boolean"
+ },
+ "issuer": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "ok": {
+ "const": true,
+ "type": "boolean"
+ },
+ "port_checked": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "sans": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "self_signed": {
+ "type": "boolean"
+ },
+ "signature_algorithm": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "subject": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "valid": {
+ "type": "boolean"
+ },
+ "valid_from": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "ok",
+ "valid",
+ "issuer",
+ "subject",
+ "sans",
+ "expires_at",
+ "valid_from",
+ "days_remaining",
+ "chain_valid",
+ "self_signed",
+ "hostname_match",
+ "signature_algorithm",
+ "error",
+ "hostname_checked",
+ "port_checked",
+ "checked_at",
+ "check_region"
+ ],
+ "type": "object"
+}