Skip to content

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.

{
"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
}
FieldTypeDescription
textstringUTF-8 plain text slice. Navigation chrome is stripped during ingestion.
startOffsetintegerByte offset where this slice starts in the full document text.
endOffsetintegerByte offset where this slice ends in the full document text. Use this as the next offset when hasMore is true.
limitintegerMaximum number of bytes requested for this slice.
totalBytesintegerTotal byte count of the full document text.
hasMorebooleantrue when more bytes are available after endOffset.