addedOutput schema / properties / signing_keys
Added value: +{
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "algorithm": {
+ "const": "Ed25519",
+ "type": "string"
+ },
+ "created_at": {
+ "format": "date-time",
+ "type": "string"
+ },
+ "id": {
+ "pattern": "^ssk_[A-Za-z0-9_-]{43}$",
+ "type": "string"
+ },
+ "public_jwk": {
+ "additionalProperties": false,
+ "properties": {
+ "alg": {
+ "const": "EdDSA",
+ "type": "string"
+ },
+ "crv": {
+ "const": "Ed25519",
+ "type": "string"
+ },
+ "ext": {
+ "const": true,
+ "type": "boolean"
+ },
+ "key_ops": {
+ "maxItems": 1,
+ "minItems": 1,
+ "prefixItems": [
+ {
+ "const": "verify",
+ "type": "string"
+ }
+ ],
+ "type": "array"
+ },
+ "kty": {
+ "const": "OKP",
+ "type": "string"
+ },
+ "use": {
+ "const": "sig",
+ "type": "string"
+ },
+ "x": {
+ "pattern": "^[A-Za-z0-9_-]{43}$",
+ "type": "string"
+ }
+ },
+ "required": [
+ "kty",
+ "crv",
+ "x",
+ "alg",
+ "use",
+ "key_ops",
+ "ext"
+ ],
+ "type": "object"
+ },
+ "revoked_at": {
+ "anyOf": [
+ {
+ "format": "date-time",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "status": {
+ "enum": [
+ "active",
+ "revoked"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "algorithm",
+ "public_jwk",
+ "status",
+ "created_at",
+ "revoked_at"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}