{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/archrock/refs/heads/main/json-schema/archrock-investor-relations-api-sec-filing-schema.json", "title": "SecFiling", "type": "object", "properties": { "id": { "type": "string" }, "type": { "type": "string", "enum": [ "10-K", "10-Q", "8-K", "DEF14A", "SC13G" ] }, "filingDate": { "type": "string", "format": "date" }, "periodOfReport": { "type": "string" }, "description": { "type": "string" }, "secUrl": { "type": "string" }, "documentUrl": { "type": "string" } } }