Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titlejson config
Code Block
{
        "section_allowed": true,
        "is_empty": false,
        "mandatory": true,
        "contains_resources": false,
        "code": "MAIN",
        "sections": [
            {
                "section_allowed": false,
                "is_empty": true,
                "mandatory": true,
                "contains_resources": true,
                "code": "THERAPIST",
                "sections": []
            },
            {
                "section_allowed": true,
                "is_empty": true,
                "mandatory": true,
                "contains_resources": true,
                "code": "NARCO",
                "sections": [
                    {
                        "section_allowed": false,
                        "is_empty": false,
                        "mandatory": true,
                        "contains_resources": true,
                        "code": "OTHER",
                        "sections": []
                    }
                ]
            },
            {
                "section_allowed": false,
                "is_empty": false,
                "mandatory": false,
                "contains_resources": true,
                "code": "OTHER",
                "sections": []
            }
        ]
    }

COMPOSITION_SECTION_

...

Condition - object with parameter section_code - CodeableConcept
Check - boolean value

Expand
titlejson config
Code Block
[
            {
                "condition": {
                    "section_code": {
                    }
                },
                "check": false
            }
        ]

COMPOSITION_SECTION_ENTRY_PREPERSON_ALLOW

Info

This config parameter is of Array type

Attributes

Type

Comments

condition

{Section}

 

check

boolean

 

Example:

Expand
titlejson config
Code Block
[
            {
            "condition": {
                "section_code": {
                }
            },
            "check": false
        }
        ]

COMPOSITION_SECTION_AUTHOR_POSITION

Info

This config parameter is of Array type

...