The account-owned filing draft and its review packet, without any acceptance link.
application/json
{
"type": "object",
"required": [
"data",
"requestId"
],
"properties": {
"data": {
"$ref": "#/components/schemas/AccountPreparedFiling",
"type": "object",
"description": "An immutable account-owned filing draft and its review packet.",
"properties": {
"schemaVersion": {
"type": "string",
"const": "account-filing-v1"
},
"filingId": {
"type": "string"
},
"procedure": {
"type": "string",
"const": "standard"
},
"schedule": {
"type": "object",
"required": [
"profile"
],
"properties": {
"profile": {
"type": "string",
"const": "standard"
}
}
},
"status": {
"type": "string",
"enum": [
"awaiting_acceptance",
"accepted"
]
},
"owner": {
"type": "object",
"required": [
"accountId"
],
"properties": {
"accountId": {
"type": "string"
}
}
},
"draftDigest": {
"type": "string"
},
"termsDigest": {
"type": "string"
},
"expiresAt": {
"type": "string"
},
"acceptance": {
"type": "object",
"required": [
"required",
"method",
"recorded"
],
"properties": {
"required": {
"type": "boolean",
"const": true
},
"method": {
"type": "string",
"const": "hosted_clickwrap"
},
"recorded": {
"type": "boolean"
},
"acceptedAt": {
"type": "string"
}
}
},
"reviewPacket": {
"$ref": "#/components/schemas/AccountFilingReviewPacket",
"type": "object",
"description": "The exact packet the person reviews and accepts on People's Court. It contains only prepared typed filing fields; no capability, token or private preparation note enters it.",
"properties": {
"schemaVersion": {
"type": "string",
"const": "account-filing-review-packet-v1"
},
"draftId": {
"type": "string"
},
"caseId": {
"type": "string",
"description": "Case identity reserved for this packet."
},
"draftDigest": {
"type": "string"
},
"termsDigest": {
"type": "string"
},
"acceptanceStatement": {
"type": "string"
},
"parties": {
"type": "object",
"required": [
"claimant",
"respondent"
],
"properties": {
"claimant": {
"type": "object",
"required": [
"principalId",
"name",
"principalKind"
],
"properties": {
"principalId": {
"type": "string"
},
"name": {
"type": "string"
},
"principalKind": {
"$ref": "#/components/schemas/CanonicalPrincipalKind"
}
}
},
"respondent": {
"type": "object",
"required": [
"name",
"principalKind"
],
"properties": {
"name": {
"type": "string"
},
"principalKind": {
"$ref": "#/components/schemas/CanonicalPrincipalKind"
},
"noticeAddress": {
"type": "object",
"required": [
"email",
"source"
],
"properties": {
"email": {
"type": "string"
},
"source": {
"type": "string",
"enum": [
"claimant_attested",
"agreement",
"notice_designation"
]
}
}
}
}
}
}
},
"claimantIdentity": {
"type": "object",
"required": [
"accountId",
"email"
],
"properties": {
"accountId": {
"type": "string"
},
"email": {
"type": "string"
}
}
},
"agentOfRecord": {
"type": "string"
},
"claimSummary": {
"type": "string"
},
"claimStatement": {
"type": "string"
},
"requestedItems": {
"type": "array",
"items": {
"type": "object",
"required": [
"id",
"kind",
"text"
],
"properties": {
"id": {
"type": "string"
},
"kind": {
"type": "string",
"enum": [
"monetary",
"declaratory",
"order"
]
},
"text": {
"type": "string"
},
"amount": {
"$ref": "#/components/schemas/FiatMoney",
"type": "object",
"additionalProperties": false,
"required": [
"currency",
"minorUnits"
],
"properties": {
"currency": {
"type": "string",
"const": "USD"
},
"minorUnits": {
"type": "string",
"pattern": "^(0|[1-9][0-9]{0,77})$"
}
}
}
}
}
},
"amount": {
"$ref": "#/components/schemas/FiatMoney",
"type": "object",
"additionalProperties": false,
"required": [
"currency",
"minorUnits"
],
"properties": {
"currency": {
"type": "string",
"const": "USD"
},
"minorUnits": {
"type": "string",
"pattern": "^(0|[1-9][0-9]{0,77})$"
}
}
},
"governingLaw": {
"type": "string"
},
"rules": {
"type": "object",
"required": [
"version",
"hash"
],
"properties": {
"version": {
"type": "string"
},
"hash": {
"type": "string"
}
}
},
"procedure": {
"type": "object",
"required": [
"name",
"finalityPath",
"schedule"
],
"properties": {
"name": {
"type": "string",
"const": "standard"
},
"finalityPath": {
"type": "string",
"const": "human_appeal"
},
"schedule": {
"type": "object",
"required": [
"profile"
],
"properties": {
"profile": {
"type": "string",
"const": "standard"
}
}
}
}
},
"aiDisclosure": {
"type": "object",
"required": [
"version",
"hash"
],
"properties": {
"version": {
"type": "string"
},
"hash": {
"type": "string"
}
}
},
"fees": {
"type": "object",
"description": "Quoted filing fee in exact USD at the published schedule's precision, its collection mode, and the stated prerequisite for opening under this packet. A payable fee is completed on People's Court; this branch initiates no payment.",
"properties": {
"collection": {
"type": "string",
"enum": [
"off",
"waived",
"collect"
]
},
"payable": {
"type": "boolean"
},
"quotedUsd": {
"type": "string"
},
"tier": {
"type": "string"
},
"prerequisite": {
"type": "string",
"enum": [
"none",
"filing_fee_paid_on_peoples_court"
]
}
},
"required": [
"collection",
"payable",
"quotedUsd",
"tier",
"prerequisite"
]
},
"respondentConsent": {
"type": "object",
"required": [
"mode",
"statement"
],
"properties": {
"mode": {
"type": "string",
"const": "deferred_hosted_account"
},
"statement": {
"type": "string"
}
}
},
"requiredConfirmations": {
"type": "array",
"items": {
"type": "object",
"required": [
"side",
"principalId",
"required",
"statement"
],
"properties": {
"side": {
"type": "string",
"const": "claimant"
},
"principalId": {
"type": "string"
},
"required": {
"type": "boolean",
"const": true
},
"statement": {
"type": "string"
}
}
}
},
"declaration": {
"type": "object",
"required": [
"declarantName",
"declarantCapacity",
"executionLocation"
],
"properties": {
"declarantName": {
"type": "string"
},
"declarantCapacity": {
"type": "string"
},
"executionLocation": {
"type": "string"
}
}
},
"scope": {
"type": "string"
},
"expiresAt": {
"type": "string"
}
},
"required": [
"schemaVersion",
"draftId",
"caseId",
"draftDigest",
"termsDigest",
"acceptanceStatement",
"parties",
"claimantIdentity",
"claimSummary",
"claimStatement",
"requestedItems",
"amount",
"governingLaw",
"rules",
"procedure",
"aiDisclosure",
"fees",
"respondentConsent",
"requiredConfirmations",
"declaration",
"scope",
"expiresAt"
]
},
"hostedAcceptanceUrl": {
"type": "string",
"description": "One-use hosted acceptance link returned once at preparation. Replays and draft GET omit it. Replacement requires explicit rotateAcceptanceLink outside the connector."
}
},
"required": [
"schemaVersion",
"filingId",
"procedure",
"schedule",
"status",
"owner",
"draftDigest",
"termsDigest",
"expiresAt",
"acceptance",
"reviewPacket"
]
},
"requestId": {
"type": "string"
}
}
}