The Regulation Content Object
The regulation content object represents one byte-range slice of a regulatory document’s UTF-8 plain text. It is returned inside the content field by the Get Regulation Content endpoint.
Object Shape
Section titled “Object Shape”{ "text": "§ 1020.320 Reports by banks of suspicious transactions.\n\n(a) General. (1) Every bank shall file with FinCEN...", "startOffset": 0, "endOffset": 28400, "limit": 40000, "totalBytes": 28400, "hasMore": false}Fields
Section titled “Fields”| Field | Type | Description |
|---|---|---|
text | string | UTF-8 plain text slice. Navigation chrome is stripped during ingestion. |
startOffset | integer | Byte offset where this slice starts in the full document text. |
endOffset | integer | Byte offset where this slice ends in the full document text. Use this as the next offset when hasMore is true. |
limit | integer | Maximum number of bytes requested for this slice. |
totalBytes | integer | Total byte count of the full document text. |
hasMore | boolean | true when more bytes are available after endOffset. |