Description
The CLI schema (agentcore.schema.v1.json) sets the minimum value for eventExpiryDuration on memories to 7:
"eventExpiryDuration": {
"type": "integer",
"minimum": 7,
"maximum": 365
}
However, the CreateMemory API allows a minimum of 3:
Valid Range: Minimum value of 3. Maximum value of 365.
This means users cannot configure a memory with an expiry duration of 3-6 days through the CLI, even though the API supports it.
Expected behavior
The schema minimum should match the API minimum of 3.
Description
The CLI schema (
agentcore.schema.v1.json) sets the minimum value foreventExpiryDurationon memories to7:However, the CreateMemory API allows a minimum of
3:This means users cannot configure a memory with an expiry duration of 3-6 days through the CLI, even though the API supports it.
Expected behavior
The schema minimum should match the API minimum of
3.