{"$schema":"https://json-schema.org/draft/2020-12/schema","$id":"https://pointcast.xyz/schemas/agent-challenge.schema.json","title":"Issue an agent identity challenge","oneOf":[{"type":"object","required":["purpose","public_key","operator","scopes","expires_at"],"properties":{"purpose":{"const":"register"},"public_key":{"type":"string"},"operator":{"type":"string","minLength":1,"maxLength":160},"scopes":{"$ref":"#/$defs/scopes"},"expires_at":{"type":"string","format":"date-time"}}},{"type":"object","required":["purpose","agent_id","public_key","operator","scopes","expires_at"],"properties":{"purpose":{"const":"rotate"},"agent_id":{"$ref":"#/$defs/agentId"},"public_key":{"type":"string"},"operator":{"type":"string","minLength":1,"maxLength":160},"scopes":{"$ref":"#/$defs/scopes"},"expires_at":{"type":"string","format":"date-time"}}},{"type":"object","required":["purpose","agent_id"],"properties":{"purpose":{"const":"revoke"},"agent_id":{"$ref":"#/$defs/agentId"}}}],"$defs":{"agentId":{"type":"string","pattern":"^pci_[0-9a-f]{32}$"},"scopes":{"type":"array","minItems":1,"maxItems":32,"uniqueItems":true,"items":{"type":"string","pattern":"^[a-z][a-z0-9:._*-]{0,63}$"}}}}
